From 95dfd5b8a288c2a36c771b924a27900c905c6884 Mon Sep 17 00:00:00 2001 From: einhorn_b Date: Fri, 6 Oct 2023 08:07:13 +0200 Subject: [PATCH] try with manuall installed node-gyp --- frontend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 1a4d8ca5c..4b21fd2ea 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -63,7 +63,7 @@ FROM base as build # Copy everything COPY . . # npm install -RUN yarn install --production=false --frozen-lockfile --non-interactive +RUN yarn global add node-gyp && yarn install --production=false --frozen-lockfile --non-interactive # npm build RUN yarn run build