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-authentication/Dockerfile
2021-05-28 08:51:51 +02:00

7 lines
No EOL
165 B
Docker

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