File size: 308 Bytes
e7b2033 |
1 2 3 4 5 6 7 8 9 |
# 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/
|