feat: initial commit

This commit is contained in:
2025-08-17 13:15:17 +02:00
commit 363e8aafac
14 changed files with 884 additions and 0 deletions

7
Dockerfile Normal file
View File

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