From 63ade327a50c061c50ed2cd6e2f52d7c41f02194 Mon Sep 17 00:00:00 2001 From: zacharyfleck Date: Mon, 24 Apr 2023 16:24:44 -0400 Subject: [PATCH 1/3] add ARM64 architecture --- .github/workflows/docker-alpine.yml | 2 +- .github/workflows/docker.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-alpine.yml b/.github/workflows/docker-alpine.yml index f274fc2c4..ba83edb05 100644 --- a/.github/workflows/docker-alpine.yml +++ b/.github/workflows/docker-alpine.yml @@ -76,7 +76,7 @@ jobs: with: context: . file: ./Dockerfile.alpine - platforms: linux/amd64 + platforms: linux/amd64, linux/arm64 # For pull requests, we run the Docker build (to ensure no PR changes break the build), # but we ONLY do an image push to DockerHub if it's NOT a PR push: ${{ github.event_name != 'pull_request' }} diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 323d90e41..dc77200ff 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -76,7 +76,7 @@ jobs: with: context: . file: ./Dockerfile - platforms: linux/amd64 + platforms: linux/amd64, linux/arm64 # For pull requests, we run the Docker build (to ensure no PR changes break the build), # but we ONLY do an image push to DockerHub if it's NOT a PR push: ${{ github.event_name != 'pull_request' }} From aa223359d498e69f23dbb4b0be010b8b6f13074e Mon Sep 17 00:00:00 2001 From: Zachary Fleck <87536651+zacharyfleck@users.noreply.github.com> Date: Tue, 25 Apr 2023 14:42:09 -0400 Subject: [PATCH 2/3] remove space --- .github/workflows/docker-alpine.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker-alpine.yml b/.github/workflows/docker-alpine.yml index ba83edb05..0a5c28ee5 100644 --- a/.github/workflows/docker-alpine.yml +++ b/.github/workflows/docker-alpine.yml @@ -76,7 +76,7 @@ jobs: with: context: . file: ./Dockerfile.alpine - platforms: linux/amd64, linux/arm64 + platforms: linux/amd64,linux/arm64 # For pull requests, we run the Docker build (to ensure no PR changes break the build), # but we ONLY do an image push to DockerHub if it's NOT a PR push: ${{ github.event_name != 'pull_request' }} From ef07f39ccf8ba6bf3462e4ee67f57aadc6bdb2d4 Mon Sep 17 00:00:00 2001 From: Zachary Fleck <87536651+zacharyfleck@users.noreply.github.com> Date: Tue, 25 Apr 2023 14:43:34 -0400 Subject: [PATCH 3/3] remove space --- .github/workflows/docker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index dc77200ff..5aa2758e7 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -76,7 +76,7 @@ jobs: with: context: . file: ./Dockerfile - platforms: linux/amd64, linux/arm64 + platforms: linux/amd64,linux/arm64 # For pull requests, we run the Docker build (to ensure no PR changes break the build), # but we ONLY do an image push to DockerHub if it's NOT a PR push: ${{ github.event_name != 'pull_request' }}