From 22e2a82fc241c8dcffde388d58a6aa13a7859854 Mon Sep 17 00:00:00 2001 From: Niek Date: Thu, 5 Dec 2019 10:34:42 +0000 Subject: [PATCH] first commit --- Dockerfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..cb87d39 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM alpine:latest +MAINTAINER Harm Vos + + + +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"]