Add Dockerfile
Some checks failed
Build & Push / build (push) Has been cancelled

This commit is contained in:
2025-09-25 14:09:54 +00:00
parent 8a75c1ce8f
commit 19347d75dc

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
# Use the official Nginx image as base
FROM nginx:alpine
# Copy custom index.html to nginx default html folder
COPY index.html /usr/share/nginx/html/index.html
# Expose port 80
EXPOSE 80
# Start Nginx
CMD ["nginx", "-g", "daemon off;"]