mirror of
https://github.com/tdurieux/anonymous_github.git
synced 2026-02-13 10:52:53 +00:00
17 lines
195 B
Docker
17 lines
195 B
Docker
FROM node:15-slim
|
|
|
|
ENV PORT 5000
|
|
EXPOSE $PORT
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json .
|
|
COPY package-lock.json .
|
|
|
|
RUN npm install
|
|
|
|
COPY src .
|
|
COPY index.ts .
|
|
COPY public .
|
|
|
|
CMD [ "npm", "run", "start" ] |