2019-06-19 11:22:15 -04:00

6 lines
79 B
Docker

FROM node
WORKDIR /usr/src/app
COPY . .
RUN npm install
CMD [ "npm", "start" ]