mirror of
https://github.com/tdurieux/anonymous_github.git
synced 2026-02-13 02:42:45 +00:00
18 lines
219 B
Docker
18 lines
219 B
Docker
FROM node:15-slim
|
|
|
|
ENV PORT 5000
|
|
EXPOSE $PORT
|
|
|
|
WORKDIR /app
|
|
|
|
RUN npm install -g nodemon
|
|
|
|
COPY package*.json .
|
|
|
|
RUN npm install
|
|
|
|
COPY src .
|
|
COPY index.ts .
|
|
COPY public .
|
|
|
|
CMD [ "nodemon", "--transpile-only", "index.ts" ] |