This commit is contained in:
Max 2024-01-18 23:44:18 +00:00
parent 3d9c7e88b0
commit 9977177bf8

View File

@ -4,12 +4,12 @@ WORKDIR /app
COPY . . COPY . .
RUN apt update # RUN apt update
RUN apt install htop # RUN apt install htop
RUN npm install RUN npm install
RUN npm install pm2 -g RUN npm install pm2 -g
EXPOSE 5000 EXPOSE 5000
CMD ["pm2-runtime", "server.js"] CMD ["pm2-runtime", "server.js"]