From a8b7859e22fccff0f46dbc0396f86300c0fb8a51 Mon Sep 17 00:00:00 2001 From: dadgam3er Date: Fri, 12 Sep 2025 02:32:33 +0000 Subject: [PATCH] adding the Dockerfile --- Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..2b714d1 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +# Use the official Nginx image as the base image +FROM nginx:alpine + +# Copy the local files to the Nginx default directory +COPY . /usr/share/nginx/html + +# Expose port 80 +EXPOSE 80 + +# Start Nginx when the container launches +CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file