First Commit
This commit is contained in:
parent
41aa025490
commit
4dfd8cd516
41 changed files with 15479 additions and 2 deletions
6
backend/Dockerfile
Normal file
6
backend/Dockerfile
Normal 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
|
||||
Reference in a new issue