diff --git a/Dockerfile b/Dockerfile index 17060ae..730855a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ RUN apt-get update RUN apt-get install -y nginx ADD nginx.conf /etc/nginx/nginx.conf -ADD ./ /www-data +ADD ./www-data /www-data EXPOSE 80 -ENTRYPOINT ["nginx"] \ No newline at end of file +ENTRYPOINT ["nginx"] diff --git a/index.html b/www-data/index.html similarity index 100% rename from index.html rename to www-data/index.html