.drone.yml aktualisiert

This commit is contained in:
2026-03-06 12:19:34 +00:00
committed by Dennis Hundertmark
parent e64e07793b
commit e9c18f4c0c
20 changed files with 9257 additions and 263 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
# Build Stage
FROM node:22-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build
# Runtime Stage
FROM nginx:alpine
COPY --from=builder /app/dist/*/browser /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]