chore(dockerfile): Update npm install for npm@11.6 Version

This commit is contained in:
Nino
2025-10-16 17:04:20 +02:00
parent 7c08d76ad4
commit 176cb206b6

View File

@@ -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