feat: Add demo landing page

This commit is contained in:
2025-11-18 02:12:48 +01:00
parent 53a0460476
commit 319cf0ea1f
3 changed files with 96 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
FROM nginx:alpine:latest
WORKDIR /usr/share/nginx/html
COPY . .
CMD [ "nginx", "-g", "daemon off;" ]
EXPOSE 80