chore: update 9 file(s)

This commit is contained in:
mike
2025-12-28 23:24:51 +01:00
parent 5805f1e81c
commit 843bf78727
9 changed files with 5628 additions and 330 deletions

View File

@@ -1,3 +1,15 @@
FROM node:20-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY wwww/ ./
COPY webpack.config.js ./
COPY robots.txt ./
COPY site.webmanifest ./
RUN mkdir -p /usr/share/nginx/html
RUN npm run build
FROM nginx:alpine
COPY ./wwww /usr/share/nginx/html/
COPY --from=builder /app/dist /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]