# Use an official apache runtime as a parent image FROM nginx:1.15 # Copy the entry page index.html into the container at /usr/local/apache2/htdocs/ COPY ./index.html /usr/share/nginx/html/ # Copy the site configuration into the container at /usr/local/apache2/conf/ COPY ./default.conf /etc/nginx/conf.d/