Dockerfile - simple httpd
Dockerfile - simple httpd
FROM myhttpd:latest COPY ./index.html /tmp/ RUN yum install httpd && \ yum clean all RUN cp /tmp/index.html /var/www/html/ -f CMD ["apachectl", "-D", "FOREGROUND"]
FROM myhttpd:latest COPY ./index.html /tmp/ RUN yum install httpd && \ yum clean all RUN cp /tmp/index.html /var/www/html/ -f CMD ["apachectl", "-D", "FOREGROUND"]