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