wip add frames

This commit is contained in:
Philipp Rothmann 2022-10-18 20:23:46 +02:00
parent edb5b02608
commit ffd62d66f1
79 changed files with 1190 additions and 2541 deletions

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM node:14-alpine AS BUILDER
WORKDIR /app
COPY package.json yarn.lock /app/
RUN yarn install
COPY . /app
RUN yarn build
FROM nginx:latest
COPY deployment/nginx.conf /etc/nginx/nginx.conf
COPY --from=builder /app/build /usr/share/nginx/html