first commit

This commit is contained in:
Niek 2019-12-05 10:34:42 +00:00
commit 22e2a82fc2
1 changed files with 13 additions and 0 deletions

13
Dockerfile Normal file
View File

@ -0,0 +1,13 @@
FROM alpine:latest
MAINTAINER Harm Vos <p.h.vos@rug.nl>
RUN apk update && apk add --no-cache apache2 apache2-utils php7-apache2 php7-pdo_mysql php7-xml php7-mysqli php7 php7-cgi php7-gd php7-mcrypt php7-json php7-zlib php7-xml php7-pdo
#RUN rm /var/www/localhost/htdocs/index.html
#COPY wordpress/ /var/www/localhost/htdocs
RUN chown apache:apache -R /var/www/localhost/htdocs
CMD ["/usr/sbin/httpd", "-D", "FOREGROUND"]