Started with web application

This commit is contained in:
cami 2021-08-28 23:42:33 +02:00
parent 7beda138c5
commit 75f2365024
40 changed files with 17382 additions and 0 deletions

19
frontend/Dockerfile Normal file
View file

@ -0,0 +1,19 @@
FROM node:latest
# set working directory
WORKDIR /app
# add `/app/node_modules/.bin` to $PATH
ENV PATH /app/node_modules/.bin:$PATH
# install app dependencies
COPY package.json ./
COPY package-lock.json ./
RUN npm install
# add app
COPY . ./
# start app
CMD ["npm", "start"]