From 7bfbe9ee037a26f3845b9f8c38eda081f4d3ff07 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Fri, 24 Jan 2025 13:56:44 +1100 Subject: [PATCH] Install each extension individually to identify the root cause --- debian/Dockerfile | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/debian/Dockerfile b/debian/Dockerfile index a2ee5bd..6b3ca4c 100644 --- a/debian/Dockerfile +++ b/debian/Dockerfile @@ -63,11 +63,17 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ # Install PHP extensions COPY --from=ghcr.io/mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - ${php_require} \ - ${php_suggest} \ - ${php_extra} - +RUN install-php-extensions bcmath && \ + install-php-extensions gd && \ + install-php-extensions pdo_mysql && \ + install-php-extensions zip && \ + install-php-extensions exif && \ + install-php-extensions imagick && \ + install-php-extensions intl && \ + install-php-extensions pcntl && \ + install-php-extensions soap && \ + install-php-extensions saxon-12.5.0 && \ + install-php-extensions opcache # Configure PHP RUN ln -s "${PHP_INI_DIR}/php.ini-production" "${PHP_INI_DIR}/php.ini"