Merge pull request #789 from winfried-van-loon/php-fpm-cleanup

Fixing whitespaces and tailing spaces
This commit is contained in:
Mike Erickson
2017-04-11 18:35:17 -07:00
committed by GitHub
4 changed files with 9 additions and 9 deletions

View File

@ -44,7 +44,7 @@ ARG INSTALL_SOAP=false
RUN if [ ${INSTALL_SOAP} = true ]; then \
# Install the soap extension
apt-get -y update && \
apt-get -y install libxml2-dev php-soap && \
apt-get -y install libxml2-dev php-soap && \
docker-php-ext-install soap \
;fi
@ -170,7 +170,7 @@ RUN if [ ${INSTALL_MYSQLI} = true ]; then \
ARG INSTALL_TOKENIZER=false
RUN if [ ${INSTALL_TOKENIZER} = true ]; then \
docker-php-ext-install tokenizer \
docker-php-ext-install tokenizer \
;fi
#