feat: Add base files

This commit is contained in:
2025-04-16 16:04:34 +02:00
parent 96c2cb6a4f
commit a19f4f1aea
20 changed files with 3730 additions and 0 deletions

12
frontend/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM 23-slim AS builder
WORKDIR /app
COPY . .
RUN npm install
RUN npm run build
FROM node:23-slim
WORKDIR /app
RUN npm install -g serve
COPY --from=builder /app/dist ./dist
CMD ["serve", "-s", "dist"]
EXPOSE 3000