From fa37d8467f300854f16a77a6ef0cc03f9554fe5d Mon Sep 17 00:00:00 2001 From: Ben Donnelly Date: Fri, 23 Feb 2024 10:14:54 +0000 Subject: [PATCH] =?UTF-8?q?fix(build):=20make=20python=20and=20gcc=20are?= =?UTF-8?q?=20needed=20for=20some=20yarn=20dependencies=E2=80=A6=20(#83228?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix(build): make python and gcc are needed for some yarn dependencies to build --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 99d25ac1d57..57c5bbacf94 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,9 @@ COPY packages packages COPY plugins-bundled plugins-bundled COPY public public -RUN yarn install --immutable +RUN apk add --no-cache make build-base python3 + +RUN yarn install --immutable --inline-builds COPY tsconfig.json .eslintrc .editorconfig .browserslistrc .prettierrc.js ./ COPY public public