added SOAP ext to php-worker (#1817)

This commit is contained in:
vladyslavstartsev
2018-11-13 14:55:15 +02:00
committed by Shao Yu-Lung (Allen)
parent c1e8e955a1
commit 0af2115658
4 changed files with 9 additions and 0 deletions

View File

@ -25,6 +25,12 @@ RUN apk --update add wget \
RUN docker-php-ext-install mysqli mbstring pdo pdo_mysql tokenizer xml pcntl
RUN pecl channel-update pecl.php.net && pecl install memcached mcrypt-1.0.1 && docker-php-ext-enable memcached
#Install SOAP package:
ARG INSTALL_SOAP=false
RUN if [ ${INSTALL_SOAP} = true ]; then \
docker-php-ext-install soap \
;fi
#Install BCMath package:
ARG INSTALL_BCMATH=false
RUN if [ ${INSTALL_BCMATH} = true ]; then \