Files
system/Dockerfile
Xuan Loi ae1ea57130 changes
2026-01-09 17:25:23 +07:00

7 lines
141 B
Docker
Executable File

FROM node:18-alpine
WORKDIR /src
COPY . .
RUN rm -rf node_modules
RUN npm install --legacy-peer-deps
RUN npm run build
RUN npm install pm2 -g