File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -37,6 +37,18 @@ MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
3737# - ...
3838#
3939
40+ #####################################
41+ # SOAP:
42+ #####################################
43+
44+ ARG INSTALL_SOAP=false
45+ RUN if [ ${INSTALL_SOAP} = true ]; then \
46+ # Install the soap extension
47+ apt-get -y update && \
48+ apt-get -y install libxml2-dev php-soap && \
49+ docker-php-ext-install soap \
50+ ;fi
51+
4052#####################################
4153# xDebug:
4254#####################################
@@ -84,6 +96,16 @@ RUN if [ ${INSTALL_ZIP_ARCHIVE} = true ]; then \
8496 docker-php-ext-install zip \
8597;fi
8698
99+ #####################################
100+ # bcmath:
101+ #####################################
102+
103+ ARG INSTALL_BCMATH=false
104+ RUN if [ ${INSTALL_BCMATH} = true ]; then \
105+ # Install the bcmath extension
106+ docker-php-ext-install bcmath \
107+ ;fi
108+
87109#####################################
88110# PHP Memcached:
89111#####################################
You can’t perform that action at this time.
0 commit comments