Fixed SOAP for both php-fpm and CLI

This commit is contained in:
Austin Benesh
2017-02-07 15:21:30 -07:00
parent f7d915256b
commit cf34c4ed32
4 changed files with 20 additions and 2 deletions

View File

@ -45,7 +45,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 && \
apt-get -y install libxml2-dev php-soap && \
docker-php-ext-install soap \
;fi