Merge branch 'master' of https://github.com/2525VenturesBV/laradock into 2525VenturesBV-master

This commit is contained in:
Shao Yu Lung
2021-03-28 00:43:53 +08:00
5 changed files with 53 additions and 0 deletions

View File

@ -1069,6 +1069,21 @@ RUN if [ ${INSTALL_XMLRPC} = true ]; then \
fi \
;fi
###########################################################################
# PHP DECIMAL:
###########################################################################
USER root
ARG INSTALL_PHPDECIMAL=false
RUN if [ ${INSTALL_PHPDECIMAL} = true ]; then \
apt-get update -yqq \
&& apt-get install -y libmpdec-dev \
&& pecl install decimal \
&& docker-php-ext-enable decimal \
;fi
###########################################################################
# New Relic for PHP:
###########################################################################