Files
frontpage/Dockerfile
Alex Kerr 763af5d2a4
All checks were successful
Build and Push Docker Image to Gitea Registry / build-and-push (push) Successful in 14s
Copy favicon in Dockerfile
2026-03-13 21:05:19 +00:00

7 lines
278 B
Docker

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;"]