Update example 'full' apache Dockerfile for Trixie

Since upgrading the Apache image to the Debian Trixie release, the
example of a "full" image is outdated. This updates it to work again.

Notably, it requires installing the Sury Debian repo as the official
repo no longer carries libc-client-dev.
This commit is contained in:
Nathaniel 2025-09-12 15:50:18 -05:00
parent 2ac1f1346c
commit 4920aa05d8
No known key found for this signature in database
GPG Key ID: DA03B047248BC6C3

View File

@ -6,10 +6,13 @@ RUN set -ex; \
apt-get install -y --no-install-recommends \
ffmpeg \
ghostscript \
libmagickcore-6.q16-6-extra \
libmagickcore-7.q16-10-extra \
procps \
smbclient \
supervisor \
lsb-release \
ca-certificates \
curl \
# libreoffice \
; \
rm -rf /var/lib/apt/lists/*
@ -18,6 +21,10 @@ RUN set -ex; \
\
savedAptMark="$(apt-mark showmanual)"; \
\
curl -sSLo /tmp/debsuryorg-archive-keyring.deb https://packages.sury.org/debsuryorg-archive-keyring.deb; \
dpkg -i /tmp/debsuryorg-archive-keyring.deb; \
sh -c 'echo "deb [signed-by=/usr/share/keyrings/debsuryorg-archive-keyring.gpg] https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list'; \
\
apt-get update; \
apt-get install -y --no-install-recommends \
libbz2-dev \