From 5f3d80dd5bbdbe3fe2a9b758f3b4738e9138f643 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20K=C3=BCffner?= <11882946+mkuf@users.noreply.github.com> Date: Fri, 8 Jul 2022 14:17:07 +0200 Subject: [PATCH] build(docker): set platform for build target (#951) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2d044667..7ea86221 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # # Builder stage, builds the application in node # -FROM node:16-alpine as builder +FROM --platform=$BUILDPLATFORM node:16-alpine as builder RUN apk add zip