Merge branch 'fixDockerfile' into 'main'

fix dockerfile

See merge request v3/services/configuration!7
This commit is contained in:
Sylvain Briat 2023-01-30 15:59:07 +00:00
commit d6259ec35a
1 changed files with 3 additions and 2 deletions

View File

@ -47,10 +47,11 @@ RUN npm run build
# Set NODE_ENV environment variable # Set NODE_ENV environment variable
ENV NODE_ENV production ENV NODE_ENV production
# Running `npm ci` removes the existing node_modules directory. # Running `npm ci` removes the existing node_modules directory.
# Passing in --only=production ensures that only the production dependencies are installed. # Passing in --omit=dev ensures that only the production dependencies are installed.
# This ensures that the node_modules directory is as optimized as possible. # This ensures that the node_modules directory is as optimized as possible.
RUN npm ci --only=production && npm cache clean --force RUN npm ci --omit=dev && npm cache clean --force
USER node USER node