Added Jenkinsfile (#1)

This commit is contained in:
Marcus Noble
2019-12-24 11:37:29 +00:00
parent 12e1d6d437
commit fc1066c455
6 changed files with 44 additions and 18 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM node:12-alpine
ADD . .
RUN npm install
EXPOSE 8000
CMD ["npm", "start"]