docker privateroom
This commit is contained in:
parent
ed40b33b54
commit
64b35b5fe6
1 changed files with 6 additions and 0 deletions
6
backend/service-privateroom/Dockerfile
Normal file
6
backend/service-privateroom/Dockerfile
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
FROM node:current-slim
|
||||
WORKDIR /app-privateroom
|
||||
COPY ["package.json", "package-lock.json*", "./"]
|
||||
RUN npm install
|
||||
COPY . .
|
||||
CMD node server.js
|
||||
Reference in a new issue