Initial Commit

This commit is contained in:
2026-04-09 23:23:31 +02:00
commit 9c6d47c5e0
94 changed files with 15173 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM node:20-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build
FROM nginx:alpine
COPY --from=builder /app/dist /usr/share/nginx/html
COPY nginx-frontend.conf /etc/nginx/conf.d/default.conf