Copy favicon in Dockerfile
All checks were successful
Build and Push Docker Image to Gitea Registry / build-and-push (push) Successful in 14s

This commit is contained in:
Alex Kerr
2026-03-13 21:05:19 +00:00
parent 08cf14ab7a
commit 763af5d2a4

View File

@@ -2,5 +2,6 @@ FROM nginx:alpine
COPY index.html /usr/share/nginx/html/index.html
COPY style/style.css /usr/share/nginx/html/style/style.css
COPY assets/*.svg /usr/share/nginx/html/assets/
COPY assets/favicon.png /usr/share/nginx/html/assets/
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]