mirror of
https://github.com/tdurieux/anonymous_github.git
synced 2026-02-13 19:02:45 +00:00
18 lines
221 B
Docker
18 lines
221 B
Docker
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" ] |