From 7883e3c23168d810259a542934c3a8615e068f38 Mon Sep 17 00:00:00 2001 From: = <=> Date: Fri, 18 Oct 2024 11:35:29 +0100 Subject: [PATCH] Resolution for Drupal calling out missing features; APCu and Output Buffering following a clean installation. --- Dockerfile.template | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Dockerfile.template b/Dockerfile.template index 2318a9abc..aef8a999e 100644 --- a/Dockerfile.template +++ b/Dockerfile.template @@ -51,6 +51,12 @@ RUN set -eux; \ zip \ ; \ \ + # kelvtech-co-uk 18th Oct 2024 - Proposed resolution to the missing drupal features noted in the 'Status Report' following a clean install of the image. + pecl install apcu; \ + echo 'extension=apcu.so' > /usr/local/etc/php/conf.d/docker-php-apcu.ini; \ + echo 'output_buffering=on' > /usr/local/etc/php/conf.d/docker-php-output-buffering.ini; \ + # End of PR + \ {{ if is_alpine then ( -}} runDeps="$( \ scanelf --needed --nobanner --format '%n#p' --recursive /usr/local \