Merge pull request #49 from steren/master

Add Dockerfile
This commit is contained in:
Steven 2019-02-05 18:45:19 -05:00 committed by GitHub
commit 7a38efee9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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" ]