13 lines
393 B
Docker
13 lines
393 B
Docker
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
|