initial commit

This commit is contained in:
2026-01-07 23:42:36 +01:00
commit f67d869005
11 changed files with 2403 additions and 0 deletions

18
Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
# Multi-stage build für minimales Image
FROM nginx:alpine
# Kopiere alle statischen Dateien
COPY index.html /usr/share/nginx/html/
COPY planning.html /usr/share/nginx/html/
COPY script.js /usr/share/nginx/html/
COPY planning.js /usr/share/nginx/html/
COPY styles.css /usr/share/nginx/html/
# Kopiere nginx Konfiguration
COPY nginx.conf /etc/nginx/conf.d/default.conf
# Exponiere Port 80
EXPOSE 80
# nginx läuft automatisch im Vordergrund
CMD ["nginx", "-g", "daemon off;"]