Add terminal-style favicon (feathericon) and fix missing COPY in Dockerfile

This commit is contained in:
2026-09-07 09:51:47 +02:00
parent e41e2f928f
commit e7ea91211e
5 changed files with 19 additions and 4 deletions
+2 -2
View File
@@ -4,8 +4,8 @@ FROM nginx:1.27-alpine
# Install Node.js and cron for the data updater.
RUN apk add --no-cache nodejs dcron
# Copy site assets.
COPY index.html style.css script.js /usr/share/nginx/html/
# Copy site assets (favicon.svg included — index.html references it).
COPY index.html style.css script.js favicon.svg favicon.png apple-touch-icon.png /usr/share/nginx/html/
COPY icons /usr/share/nginx/html/icons
COPY nginx.conf /etc/nginx/conf.d/default.conf