From 5c5bd372ba427f01d097132e0fcc45a1ffe9b2e8 Mon Sep 17 00:00:00 2001 From: Bart Ribbers Date: Wed, 22 May 2024 09:43:41 +0200 Subject: [PATCH] feat(docker): build both amd64 and arm64 images arm64 is useful to run on Raspberry Pi's and Macbooks with Apple silicon running Linux --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6c5f2e72e..0b50159d1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -169,5 +169,6 @@ jobs: uses: docker/build-push-action@v2 with: push: true + platforms: linux/amd64,linux/arm64 tags: ${{ steps.release_meta.outputs.tags || steps.edge_meta.outputs.tags }} labels: ${{ steps.release_meta.outputs.labels || steps.edge_meta.outputs.tags }}