From 176cb206b65803e9a16083f811b7fd15034080f0 Mon Sep 17 00:00:00 2001 From: Nino Date: Thu, 16 Oct 2025 17:04:20 +0200 Subject: [PATCH] chore(dockerfile): Update npm install for npm@11.6 Version --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index b2bc179f7..70bfe17a5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,7 @@ LABEL build.uniqueid="${BuildUniqueID:-1}" WORKDIR /app COPY . . RUN umask 0022 +RUN npm install -g npm@11.6 RUN npm version ${SEMVERSION} RUN npm ci --foreground-scripts RUN if [ "${IS_PRODUCTION}" = "true" ] ; then npm run-script build-prod ; else npm run-script build ; fi