Files
web_marszalekarchitekten/Dockerfile
cgasser c545b464fa Download all images locally, remove WordPress CDN dependency
All 15 project images now served from images/ — fixes mobile loading
caused by hotlink protection on the WordPress server blocking requests
without a matching Referer header.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-22 11:59:23 +02:00

9 lines
223 B
Docker

FROM nginx:alpine
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY index.html /usr/share/nginx/html/
COPY marszalek-architekten-infosheet.pdf /usr/share/nginx/html/
COPY images/ /usr/share/nginx/html/images/
EXPOSE 80