diff options
Diffstat (limited to 'Services/php')
-rw-r--r-- | Services/php/Dockerfile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Services/php/Dockerfile b/Services/php/Dockerfile index cc32e0e..4abb0f8 100644 --- a/Services/php/Dockerfile +++ b/Services/php/Dockerfile @@ -12,9 +12,7 @@ COPY httpd.conf $HTTPDCONF COPY php.ini /etc/php.d/sx.ini COPY run.sh /bin/ RUN chmod 775 /bin/run.sh && \ - chmod ug+r $HTTPDCONF && \ - mkdir /etc/httpd/logs &> /dev/null && \ - chown -R apache:apache /etc/httpd/logs &> /dev/null + chmod ug+r $HTTPDCONF COPY ./ $APP_PATH RUN rm -f $APP_PATH/Dockerfile $APP_PATH/httpd.conf $APP_PATH/run.sh && \ chown -R apache:apache $DATA_PATH $APP_PATH $LOG_PATH && \ |