diff --git a/.github/workflows/docker_dev.yml b/.github/workflows/docker_dev.yml index b515dbcbd..a4322a4bf 100644 --- a/.github/workflows/docker_dev.yml +++ b/.github/workflows/docker_dev.yml @@ -112,7 +112,7 @@ jobs: if: github.event_name != 'pull_request' uses: docker/build-push-action@v4 with: - platforms: linux/amd64,linux/arm64,linux/arm/v7 + platforms: linux/amd64,linux/arm64 context: . push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} diff --git a/Dockerfile b/Dockerfile index 098d8350d..b19d4807e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:20.2.0-slim as compiler +FROM --platform=linux/amd64 node:20.2.0-slim as compiler #RUN apt-get update && apt-get -y install git wget openssl