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