Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down