This repository has been archived on 2026-05-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
chatless/backend/service-privateroom/Dockerfile
2021-05-31 08:22:05 +02:00

6 lines
No EOL
141 B
Docker

FROM node:current-slim
WORKDIR /app-privateroom
COPY ["package.json", "package-lock.json*", "./"]
RUN npm install
COPY . .
CMD node server.js