From 25d2580f479d26f658696ff800f7bf580feef87f Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Fri, 5 Jul 2024 15:19:33 +0200 Subject: [PATCH] Try to fix docker build --- support/docker/production/Dockerfile.bookworm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/docker/production/Dockerfile.bookworm b/support/docker/production/Dockerfile.bookworm index 924a792f9..a30c87193 100644 --- a/support/docker/production/Dockerfile.bookworm +++ b/support/docker/production/Dockerfile.bookworm @@ -27,7 +27,7 @@ RUN if [ "${ALREADY_BUILT}" = 0 ]; then \ echo "Do not build application inside Docker because of ALREADY_BUILT build argument"; \ fi; \ rm -rf ./node_modules ./client/node_modules ./client/.angular \ - && yarn install --pure-lockfile --production --network-timeout 1200000 --network-concurrency 20 \ + && NOCLIENT=1 yarn install --pure-lockfile --production --network-timeout 1200000 --network-concurrency 20 \ && yarn cache clean USER root