Files
web_marszalekarchitekten/Dockerfile
cgasser 088d76441c Add favicon: M monogram on green background
SVG master + PNG exports at 16x16, 32x32 and 180x180 (Apple touch icon).
Generated via puppeteer from favicon.svg. Wired into <head> and Dockerfile.

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

10 lines
320 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/
COPY favicon.svg favicon-16x16.png favicon-32x32.png apple-touch-icon.png /usr/share/nginx/html/
EXPOSE 80