diff options
Diffstat (limited to 'Services/php/Dockerfile')
| -rw-r--r-- | Services/php/Dockerfile | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/Services/php/Dockerfile b/Services/php/Dockerfile index 58653a8..4abb0f8 100644 --- a/Services/php/Dockerfile +++ b/Services/php/Dockerfile @@ -13,11 +13,11 @@ COPY php.ini /etc/php.d/sx.ini  COPY run.sh /bin/  RUN chmod 775 /bin/run.sh && \      chmod ug+r $HTTPDCONF -COPY ./ $TMP_APP_PATH -RUN rm -f $TMP_APP_PATH/Dockerfile $TMP_APP_PATH/httpd.conf $TMP_APP_PATH/run.sh && \ -    chown -R apache:apache $TMP_APP_PATH $APP_PATH $LOG_PATH && \ -    chmod ug+r -R $TMP_APP_PATH $APP_PATH +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 && \ +    chmod ug+r -R $DATA_PATH $APP_PATH  EXPOSE 80 443 -VOLUME [$APP_PATH,$LOG_PATH] +VOLUME [$DATA_PATH,$LOG_PATH]  CMD ["/bin/run.sh"]
\ No newline at end of file | 
