From 518f2f5ce698bec33202588187132284008f6ab5 Mon Sep 17 00:00:00 2001 From: Mikko Riippi Date: Thu, 8 Feb 2024 10:15:39 +0200 Subject: [PATCH] (HP-2047) Try to fix build --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index cdbca1faa..7969784a6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,15 +30,15 @@ COPY package*.json *yarn* ./ # Install npm depepndencies ENV PATH /app/node_modules/.bin:$PATH -USER root -RUN bash /tools/apt-install.sh build-essential +# USER root +# RUN bash /tools/apt-install.sh build-essential USER appuser RUN yarn config set network-timeout 300000 RUN yarn && yarn cache clean --force -USER root -RUN bash /tools/apt-cleanup.sh build-essential +# USER root +# RUN bash /tools/apt-cleanup.sh build-essential # ============================= FROM appbase as development