From afcca7e4dd171faf8ab5bbfcd3a71a060f89f652 Mon Sep 17 00:00:00 2001 From: Church13 Date: Sat, 7 Oct 2023 10:54:15 -0600 Subject: [PATCH] Add php-soap to 8.0 container --- php8.0/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/php8.0/Dockerfile b/php8.0/Dockerfile index 4ecc3a1..634d817 100644 --- a/php8.0/Dockerfile +++ b/php8.0/Dockerfile @@ -3,6 +3,8 @@ FROM wordpress:php8.0 RUN pecl install redis && \ docker-php-ext-enable redis +RUN docker-php-ext-install soap + COPY custom.ini $PHP_INI_DIR/conf.d/ USER www-data:www-data