diff --git a/Dockerfile b/Dockerfile index 6fbc5cd..25498d8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,10 +3,10 @@ FROM node:20-alpine WORKDIR /app COPY package*.json ./ -RUN npm ci --production +RUN npm ci COPY . . RUN npm run build EXPOSE 3000 -CMD ["node", ".output/server/index.mjs"] \ No newline at end of file +CMD ["node", ".output/server/index.mjs"]