summaryrefslogtreecommitdiffstats
path: root/Services/php/Dockerfile
blob: 5af160ae4f8e8e48222ad8a532536a679c71209c (plain)
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"]