From 71c90ecff3657a5b073ad6eb86dcfb12345cbf0e Mon Sep 17 00:00:00 2001 From: almounkez1 Date: Mon, 30 Mar 2026 09:07:48 +0000 Subject: [PATCH] Add Dockerfile --- Dockerfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..f8e6610 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ + +# Use the official Nginx Alpine image as base +FROM nginx:alpine + +# Copy your index.html to Nginx's default public folder +COPY . /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