chore: update npm install flag in Dockerfile

This commit is contained in:
enesgules 2025-09-11 02:32:41 +03:00
parent d959881167
commit 9df7676b35

View File

@ -23,7 +23,7 @@ COPY --from=builder /app/dist ./dist
COPY package.json ./
# Install only production dependencies
RUN npm install --production --ignore-scripts
RUN npm install --omit=dev --ignore-scripts
# Expose HTTP port
EXPOSE 8080