git-rest-api/Dockerfile

10 строки
91 B
Docker

FROM node:10
EXPOSE 3009
COPY ./ ./
RUN npm ci
RUN npm run build
CMD npm run start:prod