diff --git a/Dockerfile b/Dockerfile index e8ab908..0f57beb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,19 +1,9 @@ # Base Image FROM nginx:alpine - # MAINTAINER of the Dockerfile - -MAINTAINER Bikram - -#Copy the index.html file /usr/share/nginx/html/ - -COPY index.html /usr/share/nginx/html/ - +MAINTAINER benschhold@gmail.com #Expose Nginx Port - EXPOSE 80 - #Start NginxService - CMD ["nginx", "-g", "daemon off;"]