diff --git a/Dockerfile b/Dockerfile index e039066..8bd0a7f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,30 +1 @@ -# -# Nginx Dockerfile -# -# https://github.com/dockerfile/nginx -# - -# Pull base image. -FROM dockerfile/ubuntu - -# Install Nginx. -RUN \ - add-apt-repository -y ppa:nginx/stable && \ - apt-get update && \ - apt-get install -y nginx && \ - rm -rf /var/lib/apt/lists/* && \ - echo "\ndaemon off;" >> /etc/nginx/nginx.conf && \ - chown -R www-data:www-data /var/lib/nginx - -# Define mountable directories. -VOLUME ["/etc/nginx/sites-enabled", "/etc/nginx/certs", "/etc/nginx/conf.d", "/var/log/nginx", "/var/www/html"] - -# Define working directory. -WORKDIR /etc/nginx - -# Define default command. -CMD ["nginx"] - -# Expose ports. -EXPOSE 80 -EXPOSE 443 +FROM nginx