From fd8cbc1c0522da44fa4d585f99e1f085a0bb92e2 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 | 21 +++++++++++++++++++++ CHANGELOG.md | 4 ++++ 2 files changed, 25 insertions(+) diff --git a/.github/workflows/docker-hub.yml b/.github/workflows/docker-hub.yml index 5971fcfa..7cf8a693 100644 --- a/.github/workflows/docker-hub.yml +++ b/.github/workflows/docker-hub.yml @@ -23,6 +23,12 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 + - + 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 @@ -45,6 +51,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 }} @@ -56,6 +63,12 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 + - + 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 @@ -79,6 +92,7 @@ jobs: context: . file: ./src/frontend/Dockerfile target: frontend-production + platforms: linux/amd64,linux/arm64 build-args: | DOCKER_USER=${{ env.DOCKER_USER }}:-1000 PUBLISH_AS_MIT=false @@ -92,6 +106,12 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 + - + 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 @@ -115,6 +135,7 @@ jobs: context: . file: ./src/frontend/servers/y-provider/Dockerfile target: y-provider + 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 c831e4ee..dee64a5b 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 + ## [3.3.0] - 2025-05-06 ### Added