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>
10 lines
320 B
Docker
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
|