mirror of
https://github.com/tdurieux/anonymous_github.git
synced 2026-02-13 02:42:45 +00:00
v2 wip
This commit is contained in:
18
Dockerfile
18
Dockerfile
@@ -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" ]
|
||||
Reference in New Issue
Block a user