diff --git a/Dockerfile b/Dockerfile index 67d373d..90f8c66 100644 --- a/Dockerfile +++ b/Dockerfile @@ -48,9 +48,9 @@ RUN npm run build # Set NODE_ENV environment variable ENV NODE_ENV production # 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. -RUN npm ci --only=production && npm cache clean --force +RUN npm ci --omit=dev && npm cache clean --force USER node