Added Dockerfile
This commit is contained in:
14
Dockerfile
Normal file
14
Dockerfile
Normal file
@@ -0,0 +1,14 @@
|
||||
FROM node
|
||||
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
COPY package*.json ./
|
||||
|
||||
RUN npm install
|
||||
|
||||
COPY Webservice Webservice
|
||||
COPY public public
|
||||
|
||||
EXPOSE 5000
|
||||
|
||||
CMD [ "node", "Webservice/server.js" ]
|
Reference in New Issue
Block a user