From 76fa8ac99fb995d5d4bcae10c8073ebfdca86d1c Mon Sep 17 00:00:00 2001 From: Joerg Elfring Date: Fri, 1 Mar 2019 22:06:23 +0100 Subject: [PATCH] aap: Do not create PID directory for apache The PID directory is now created automatically --- aap/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aap/Dockerfile b/aap/Dockerfile index d51edfb..472dcba 100644 --- a/aap/Dockerfile +++ b/aap/Dockerfile @@ -33,8 +33,8 @@ RUN apk add --update --no-cache \ ## Configure apache COPY assets/php.ini /etc/php7/php.ini COPY assets/httpd.conf /etc/apache2/httpd.conf -RUN mkdir /run/apache2 \ - && chown apache:apache /run/apache2 +RUN chown apache:apache /run/apache2 + ## Some customization for running websites RUN chown -R apache:apache /var/www/localhost\