add docker

This commit is contained in:
Jeff Groom
2019-09-24 18:52:25 -06:00
parent fdb9a351f4
commit 30ad96322d
4 changed files with 123 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:12.10.0-buster
WORKDIR /app
COPY . .
RUN npm install
RUN npm run build
EXPOSE 3000
CMD ["npm", "run", "start"]