Add Docker support

This commit is contained in:
2026-04-18 18:23:02 +02:00
parent 9723255da2
commit 038b42586f
2 changed files with 11 additions and 0 deletions

4
Dockerfile Normal file
View File

@@ -0,0 +1,4 @@
FROM nginx:alpine
COPY index.html /usr/share/nginx/html/index.html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]