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>
9 lines
223 B
Docker
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
|