From 87b9ca2314c8f8f08af81291a4c7c06aaf20a9ea Mon Sep 17 00:00:00 2001 From: Stephan Meijer Date: Thu, 19 Feb 2026 17:33:48 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7(docker)=20add=20arm64=20platform?= =?UTF-8?q?=20support=20for=20image=20builds?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Stephan Meijer --- .github/workflows/docker-hub.yml | 35 ++++++++++++++++++++++++++++++++ CHANGELOG.md | 4 ++++ 2 files changed, 39 insertions(+) diff --git a/.github/workflows/docker-hub.yml b/.github/workflows/docker-hub.yml index 18cb47b1..f6dcc8f5 100644 --- a/.github/workflows/docker-hub.yml +++ b/.github/workflows/docker-hub.yml @@ -24,6 +24,12 @@ jobs: - name: Checkout repository uses: actions/checkout@v6 + - + name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 - name: Docker meta id: meta @@ -49,6 +55,7 @@ jobs: with: context: . target: backend-production + platforms: linux/amd64,linux/arm64 build-args: DOCKER_USER=${{ env.DOCKER_USER }}:-1000 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} @@ -60,6 +67,12 @@ jobs: - name: Checkout repository uses: actions/checkout@v6 + - + name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 - name: Docker meta id: meta @@ -86,6 +99,7 @@ jobs: context: . file: ./src/frontend/Dockerfile target: frontend-production + platforms: linux/amd64,linux/arm64 build-args: DOCKER_USER=${{ env.DOCKER_USER }}:-1000 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} @@ -97,6 +111,12 @@ jobs: - name: Checkout repository uses: actions/checkout@v6 + - + name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 - name: Docker meta id: meta @@ -123,6 +143,7 @@ jobs: context: . file: ./docker/dinum-frontend/Dockerfile target: frontend-production + platforms: linux/amd64,linux/arm64 build-args: DOCKER_USER=${{ env.DOCKER_USER }}:-1000 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} @@ -134,6 +155,12 @@ jobs: - name: Checkout repository uses: actions/checkout@v6 + - + name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 - name: Docker meta id: meta @@ -162,6 +189,7 @@ jobs: context: ./src/summary file: ./src/summary/Dockerfile target: production + platforms: linux/amd64,linux/arm64 build-args: DOCKER_USER=${{ env.DOCKER_USER }}:-1000 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} @@ -173,6 +201,12 @@ jobs: - name: Checkout repository uses: actions/checkout@v6 + - + name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 - name: Docker meta id: meta @@ -201,6 +235,7 @@ jobs: context: ./src/agents file: ./src/agents/Dockerfile target: production + platforms: linux/amd64,linux/arm64 build-args: DOCKER_USER=${{ env.DOCKER_USER }}:-1000 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 37de0224..677c0e71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ and this project adheres to ## [Unreleased] +### Added + +- 👷(docker) add arm64 platform support for image builds + ### Changed - ♻️(frontend) replace custom reactions toolbar with react aria popover #985