Initial commit

This commit is contained in:
2024-07-25 17:23:46 +02:00
commit d5a015328d
28 changed files with 3870 additions and 0 deletions

9
view/Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM node:20 AS build
WORKDIR .
COPY . ./
RUN npm install && npm run build
FROM nginx:1.27.0-alpine
COPY --from=build /build /usr/share/nginx/html