Split production node_modules

This commit is contained in:
colinmcneil
2024-12-17 14:56:25 -05:00
committed by Jim Clark
parent 9ff603aef5
commit 4e8a8d270a
14 changed files with 92 additions and 47 deletions

View File

@@ -11,11 +11,14 @@ RUN --mount=type=cache,target=/root/.npm-production npm ci --ignore-scripts --om
FROM node:22-alpine AS release
COPY --from=builder /app/dist /app
COPY --from=builder /app/node_modules /app/node_modules
COPY --from=builder /app/dist /app/dist
COPY --from=builder /app/package.json /app/package.json
COPY --from=builder /app/package-lock.json /app/package-lock.json
ENV NODE_ENV=production
WORKDIR /app
CMD ["node", "dist/index.js"]
RUN npm ci --ignore-scripts --omit-dev
ENTRYPOINT ["node", "dist/index.js"]