fixed redis php extension instalation bug

remove unnecessary RUN command
This commit is contained in:
FalAngelSt 2017-01-13 15:53:23 +02:00 committed by GitHub
parent f9fe45cb75
commit ad5883cdfd

View File

@ -66,7 +66,7 @@ RUN if [ ${INSTALL_XDEBUG} = true ]; then \
ARG INSTALL_PHPREDIS=false
RUN if [ ${INSTALL_PHPREDIS} = true ]; then \
# Install Php Redis Extension
RUN pecl install -o -f redis \
pecl install -o -f redis \
&& rm -rf /tmp/pear \
&& docker-php-ext-enable redis \
;fi