Add Dockerfile

This commit is contained in:
Steren Giannini 2019-02-05 13:27:23 -08:00
parent 277f239b8f
commit 7c3fd124bf
1 changed files with 6 additions and 0 deletions

6
Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM node:10
WORKDIR /usr/src/app
COPY . .
RUN npm install
RUN npm run build
CMD [ "npm", "start" ]