Skip to content

Commit f531746

Browse files
fix: remove arm64 for platforms
1 parent c068620 commit f531746

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build_docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Set up QEMU
2727
uses: docker/setup-qemu-action@v3
2828
with:
29-
platforms: all
29+
platforms: amd64
3030

3131
- name: Install Docker Buildx
3232
id: buildx
@@ -45,7 +45,7 @@ jobs:
4545
- name: Build and push Docker Image
4646
uses: docker/build-push-action@v5
4747
with:
48-
platforms: linux/amd64,linux/arm64
48+
platforms: linux/amd64
4949
context: ${{ matrix.service == 'client' && './client' || format('./server/{0}', matrix.service) }}
5050
file: ${{ matrix.service == 'client' && './client/Dockerfile' || format('./server/{0}/Dockerfile', matrix.service) }}
5151
push: true

0 commit comments

Comments
 (0)