From e51227100494758b9cb6bfbc93f625ba32f47b95 Mon Sep 17 00:00:00 2001 From: ghaymah_dev Date: Tue, 31 Mar 2026 08:17:57 +0000 Subject: [PATCH] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5b9326f..9e560ac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM nginx:alpine # Copy your index.html to Nginx's default public folder -COPY index.html /usr/share/nginx/html/ +COPY . /usr/share/nginx/html/ # Expose port 80 (default HTTP port) EXPOSE 80