ADD: Site added

This commit is contained in:
2025-08-26 23:11:36 +02:00
parent c9f9ed2414
commit e60734f91a
2 changed files with 451 additions and 0 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
# Use the official Nginx image from Docker Hub
FROM nginx:alpine
# Copy index.html to the default Nginx public folder
COPY index.html /usr/share/nginx/html/
# Listen on port 80
EXPOSE 80