commit 363ab2df04a8b5f0b1404f66e95b81ce0fd39ed2 Author: ghaymah_dev Date: Thu Feb 19 13:37:43 2026 +0000 Add Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..5b9326f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +# Use the official Nginx Alpine image as base +FROM nginx:alpine + +# Copy your index.html to Nginx's default public folder +COPY index.html /usr/share/nginx/html/ + +# Expose port 80 (default HTTP port) +EXPOSE 80 + +# Start Nginx in foreground mode (required for Docker containers) +CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file