Support bcmath php extention on php-fpm and workspace (base image 1.3)

Probably closes #453
This commit is contained in:
Mahmoud Zalt
2016-12-21 14:01:51 -05:00
parent 586a21086f
commit 860af556e2
4 changed files with 22 additions and 1 deletions

View File

@ -84,6 +84,16 @@ RUN if [ ${INSTALL_ZIP_ARCHIVE} = true ]; then \
docker-php-ext-enable zip \
;fi
#####################################
# bcmath:
#####################################
ARG INSTALL_BCMATH=false
RUN if [ ${INSTALL_BCMATH} = true ]; then \
# Install the bcmath extension
docker-php-ext-install bcmath \
;fi
#####################################
# PHP Memcached:
#####################################