Merge pull request #28 from Mansehej/docker

Add dockerfile for websocket
This commit is contained in:
Kevin Jahns
2020-10-10 17:06:10 +02:00
committed by GitHub

9
Dockerfile Normal file
View 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" ]