Skip to content

Commit f47f084

Browse files
committed
Add soap extension.
1 parent 5a166d3 commit f47f084

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

5.6/fpm/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@ RUN apt-get update && apt-get install -y \
1616
wget \
1717
git
1818

19-
RUN pecl install memcache \
20-
&& pecl install mongo \
21-
&& pecl install redis \
19+
RUN pecl install \
20+
memcache \
21+
mongo \
22+
redis \
2223
&& docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \
2324
&& docker-php-ext-install -j$(nproc) \
2425
gd \

7.1/fpm/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ RUN apt-get update && apt-get install -y \
1616
wget \
1717
git
1818

19-
RUN pecl install mongodb \
20-
&& pecl install redis \
19+
RUN pecl install \
20+
mongodb \
21+
redis \
2122
&& docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \
2223
&& docker-php-ext-install -j$(nproc) \
2324
gd \
@@ -29,6 +30,7 @@ RUN pecl install mongodb \
2930
pdo_mysql \
3031
zip \
3132
sockets \
33+
soap \
3234
&& docker-php-ext-enable \
3335
opcache \
3436
mongodb \

7.1/zts/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ RUN pecl install \
3030
pdo_mysql \
3131
zip \
3232
sockets \
33+
soap \
3334
&& docker-php-ext-enable \
3435
opcache \
3536
mongodb \

0 commit comments

Comments
 (0)