Added Dockerfile
This commit is contained in:
parent
484c71c895
commit
9e6c0db5d4
12
Dockerfile
Normal file
12
Dockerfile
Normal file
@ -0,0 +1,12 @@
|
||||
FROM node:8-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
ADD package.json .
|
||||
RUN npm install --production
|
||||
|
||||
ADD . .
|
||||
|
||||
EXPOSE 9090
|
||||
|
||||
CMD npm start
|
Loading…
Reference in New Issue
Block a user