From d2fca72b801a82fd7b09ed79f8dd12c2c9a5006c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Victor=20Negreiros?= Date: Wed, 17 Apr 2024 20:46:16 -0300 Subject: [PATCH] update dockerfile --- Dockeryzer.Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockeryzer.Dockerfile b/Dockeryzer.Dockerfile index 3eaf60c..cf32f96 100644 --- a/Dockeryzer.Dockerfile +++ b/Dockeryzer.Dockerfile @@ -16,6 +16,7 @@ COPY --chown=node:node . /workspace/app # Install only production dependencies, optimizing the build process, and clean npm cache. RUN npm ci --only=production && npm run build && npm cache clean --force + # --------------------> The production image # Again, use the Node.js image based on Debian Bullseye for the production phase. FROM node:alpine