initial commit

This commit is contained in:
Marco Realacci 2024-10-01 23:55:57 +02:00
commit 213b1aad6c
714 changed files with 590265 additions and 0 deletions

8
Dockerfile.frontend Normal file
View file

@ -0,0 +1,8 @@
FROM node:lts as builder
WORKDIR /app
COPY webui webui
WORKDIR /app/webui
RUN yarn run build-prod
FROM nginx:stable
COPY --from=builder /app/webui/dist /usr/share/nginx/html