10 lines
223 B
Docker
10 lines
223 B
Docker
FROM nginx:alpine
|
|
|
|
# Alle Website-Dateien in den nginx HTML-Ordner kopieren
|
|
COPY . /usr/share/nginx/html
|
|
|
|
# Eigene nginx-Konfiguration (Gzip, Caching, saubere URLs)
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
|
|
EXPOSE 80
|