diff --git a/Dockerfile b/Dockerfile index 79ca04d..0f82069 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ FROM nginx:alpine -COPY index.html style.css /usr/share/nginx/html/ +COPY . /usr/share/nginx/html/ EXPOSE 80 CMD ["nginx", "-g", "daemon off;"]