Fix soap module build for PHP 7.4

This commit is contained in:
cytopia
2022-03-21 19:15:03 +01:00
parent 7f71dd2493
commit 896c8f6c80
2 changed files with 3 additions and 2 deletions

View File

@@ -622,8 +622,8 @@ RUN set -eux \
RUN set -eux \
# Installation: Version specific
# Type: Built-in extension
# Default: configure command
&& docker-php-ext-configure soap --with-libxml-dir=/usr \
# Custom: configure command
&& docker-php-ext-configure soap --enable-soap \
# Installation
&& docker-php-ext-install -j$(getconf _NPROCESSORS_ONLN) soap \
&& true