This commit is contained in:
tdurieux
2021-03-16 11:23:16 +01:00
parent 141d016aae
commit a2d0f0b212
475 changed files with 23855 additions and 3869 deletions

View File

@@ -0,0 +1,18 @@
FROM node:15-slim
ENV PORT 5000
EXPOSE $PORT
WORKDIR /app
RUN npm install -g nodemon
COPY package*.json .
RUN npm install
RUN npm install forever
COPY public .
COPY index.js .
COPY utils .
CMD [ "node", "index.js" ]