From 5b5121a6091d391dab778f9ce694e064b687bc41 Mon Sep 17 00:00:00 2001 From: Manuel <30572287+manuel-rw@users.noreply.github.com> Date: Sat, 24 Aug 2024 14:42:05 +0200 Subject: [PATCH] config: fix arm64 build --- .github/workflows/docker_dev.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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