Add deploy files

This commit is contained in:
51m0n
2026-03-13 20:04:00 +00:00
parent 5ca40e105b
commit bac2259a1a
2 changed files with 45 additions and 0 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,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/
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]