Merge pull request #28 from Mansehej/docker
Add dockerfile for websocket
This commit is contained in:
commit
6e448bec59
9
Dockerfile
Normal file
9
Dockerfile
Normal file
@ -0,0 +1,9 @@
|
||||
FROM node:12-alpine
|
||||
|
||||
RUN mkdir -p /home/node/app/node_modules && chown -R node:node /home/node/app
|
||||
WORKDIR /home/node/app
|
||||
COPY package*.json ./
|
||||
USER node
|
||||
RUN npm install
|
||||
COPY --chown=node:node . .
|
||||
CMD [ "npm", "start" ]
|
||||
Loading…
x
Reference in New Issue
Block a user