From f1e72c0ceacacb6a0f8152509a18e3136823840a Mon Sep 17 00:00:00 2001 From: Leonhardt Koepsell Date: Sat, 6 Aug 2022 03:16:09 -0700 Subject: Add a linux/arm64 architecture variant to the official container (#46) Fixes ferdium/ferdium-server#45 --- .github/workflows/docker.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to '.github/workflows/docker.yml') diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index a0c8bf3..a3e77f3 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -102,9 +102,10 @@ jobs: uses: docker/build-push-action@v3 with: context: . - # Due to build time, only building the one currently needed. # If needed, we can add more platforms when requested. - platforms: "linux/amd64" + platforms: + - linux/amd64 + - linux/arm64 # Do not push pull requests push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} -- cgit v1.2.3-54-g00ecf