First Commit

This commit is contained in:
Yûki VACHOT 2021-10-16 15:23:46 +02:00
parent 41aa025490
commit 4dfd8cd516
41 changed files with 15479 additions and 2 deletions

6
backend/Dockerfile Normal file
View file

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