Skip to content

Commit

Permalink
Remove ARM64 support from Docker build
Browse files Browse the repository at this point in the history
The setup-qemu-action for cross-platform builds was also removed. This change ensures the build only targets the Linux AMD64 platform, simplifying the build process.
  • Loading branch information
meanmail committed Sep 18, 2024
1 parent 0f8aad6 commit 0cca244
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build_base_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,11 @@ jobs:
password: ${{ secrets.REGISTRY_PASSWORD }}

- uses: docker/setup-buildx-action@v3
- uses: docker/setup-qemu-action@v3

- name: Build and push server image
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
platforms: linux/amd64
context: .
pull: true
push: true
Expand Down

0 comments on commit 0cca244

Please sign in to comment.