Erste Produktivversion
This commit is contained in:
12
web/Dockerfile
Normal file
12
web/Dockerfile
Normal file
@@ -0,0 +1,12 @@
|
||||
FROM nginx:alpine
|
||||
|
||||
# Konfiguration ausserhalb des Web-Roots
|
||||
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
||||
COPY proxy_common.conf /etc/nginx/proxy_common.conf
|
||||
COPY security_headers.conf /etc/nginx/security_headers.conf
|
||||
|
||||
# Statische Dateien. Ab Phase 3 kommt hier das gebaute Vite-Ergebnis
|
||||
# aus einer vorgelagerten Build-Stufe hinein.
|
||||
COPY html/ /usr/share/nginx/html/
|
||||
|
||||
EXPOSE 8080
|
||||
Reference in New Issue
Block a user