2024-10-31 18:17:58 +00:00
|
|
|
FROM node:lts-slim
|
2024-10-30 16:24:34 +00:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
2024-11-02 21:18:04 +00:00
|
|
|
COPY app/package.json ./
|
2024-11-01 07:55:54 +00:00
|
|
|
|
2024-10-30 16:24:34 +00:00
|
|
|
RUN npm install --omit=dev
|
2024-11-02 21:18:04 +00:00
|
|
|
RUN npm install pm2 -g
|
2024-10-30 16:24:34 +00:00
|
|
|
|
2024-11-02 21:18:04 +00:00
|
|
|
COPY app/ ./
|
2024-10-30 16:24:34 +00:00
|
|
|
|
2024-11-01 18:02:31 +00:00
|
|
|
ENV NODE_ENV=production
|
|
|
|
|
2024-11-01 07:55:54 +00:00
|
|
|
# Build without type checking, as we have removed the Typescript
|
|
|
|
# dev-dependencies above to save space in the final build
|
|
|
|
RUN npx tsc --noCheck
|
2024-10-30 16:24:34 +00:00
|
|
|
|
2024-11-02 21:18:04 +00:00
|
|
|
RUN chown -R node:node /app
|
|
|
|
|
|
|
|
USER node
|
|
|
|
|
|
|
|
CMD ["pm2-runtime", "dist/index.js" ]
|