Skip to content

Commit

Permalink
Docker: add darwin/arm and linux/arm for target platforms (#639)
Browse files Browse the repository at this point in the history
## Details
- [x] Add support for darwin/arm
- [x] Add support for linux/arm


Closes #557
  • Loading branch information
saraswatpuneet authored Oct 23, 2024
1 parent 9d692b7 commit c4a2d98
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ jobs:
with:
platforms: |
linux/amd64
linux/arm64/v8
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
Expand All @@ -113,7 +114,7 @@ jobs:
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64
platforms: linux/amd64, linux/arm64/v8
push: ${{ needs.set_variables.outputs.test_run != 'true'}}
file: Docker/Dockerfile.${{ matrix.service }}
tags: ${{ steps.cp-tags.outputs.tags }}
Expand Down

0 comments on commit c4a2d98

Please sign in to comment.