Add frontend and backend files

This commit is contained in:
2022-02-09 13:56:34 +02:00
parent cf7aee71a2
commit 32ea3f5031
27 changed files with 30853 additions and 0 deletions

View File

@@ -1 +1,16 @@
# pull official node image
FROM node
# define /app as working directory
WORKDIR /app
# copy package.json and package-lock.json to /app
COPY package.json /app
COPY package-lock.json /app
# install node dependencies
RUN npm install
COPY . /app
# launch node server
ENTRYPOINT node server.js