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
commit 6e448bec59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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" ]