1 2 3 4 5 6 7 8 9 10 11 12 13
FROM startx/fedora MAINTAINER Chistophe LARUE <dev@startx.fr> RUN yum -y update && yum clean all RUN yum -y install httpd php php-* && yum clean all ADD welcome_apache.html /var/www/html/index.html EXPOSE 80 # avoid some issues observed with container restart RUN rm -rf /run/httpd/* ENTRYPOINT ["/usr/sbin/apachectl", "-D FOREGROUND"]