summaryrefslogtreecommitdiffstats
path: root/26/fpm/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to '26/fpm/Dockerfile')
-rw-r--r--26/fpm/Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/26/fpm/Dockerfile b/26/fpm/Dockerfile
index 86eba0fe..a0d54638 100644
--- a/26/fpm/Dockerfile
+++ b/26/fpm/Dockerfile
@@ -1,5 +1,5 @@
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
-FROM php:8.2-fpm-bullseye
+FROM php:8.2-fpm-bookworm
# entrypoint.sh and cron.sh dependencies
RUN set -ex; \
@@ -80,9 +80,9 @@ RUN set -ex; \
apt-mark auto '.*' > /dev/null; \
apt-mark manual $savedAptMark; \
ldd "$(php -r 'echo ini_get("extension_dir");')"/*.so \
- | awk '/=>/ { print $3 }' \
+ | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print so }' \
| sort -u \
- | xargs -r dpkg-query -S \
+ | xargs -r dpkg-query --search \
| cut -d: -f1 \
| sort -u \
| xargs -rt apt-mark manual; \