fork: move from guezoloic repo

This commit is contained in:
2026-01-24 13:29:26 +01:00
parent 75ebf27385
commit e7c093935e
31 changed files with 5377 additions and 0 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
# Build
FROM node:20-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
# Nginx
FROM nginx:alpine
COPY --from=builder /app/dist /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
VOLUME /usr/share/nginx/html/data
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]