Skip to content

Commit b482d4d

Browse files
authored
Merge pull request laradock#783 from winfried-van-loon/php-fpm-71
Bringing Dockerfile 71 up-to-date with 70
2 parents f5478cf + ad00284 commit b482d4d

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

php-fpm/Dockerfile-71

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff 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
#####################################

0 commit comments

Comments
 (0)