From 0ee82d41089ad2006dcb3000176728b457d6c484 Mon Sep 17 00:00:00 2001 From: mal-sh <97813084+mal-sh@users.noreply.github.com> Date: Sat, 26 Apr 2025 05:44:16 -0400 Subject: [PATCH] Create Dockerfile --- Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..7cdb23e --- /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;"]