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.
PolyNotFound/backend/Dockerfile
2021-10-16 15:23:46 +02:00

6 lines
138 B
Docker

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