Added Dockerfile

This commit is contained in:
Marcus Noble 2020-04-01 12:16:08 +01:00
parent 484c71c895
commit 9e6c0db5d4
1 changed files with 12 additions and 0 deletions

12
Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM node:8-alpine
WORKDIR /app
ADD package.json .
RUN npm install --production
ADD . .
EXPOSE 9090
CMD npm start