gg/Dockerfile
2024-01-18 23:44:18 +00:00

16 lines
169 B
Docker
Executable File

FROM node:latest
WORKDIR /app
COPY . .
# RUN apt update
# RUN apt install htop
RUN npm install
RUN npm install pm2 -g
EXPOSE 5000
CMD ["pm2-runtime", "server.js"]