From d4c0cf70302d3556e2f33345bd863ae75ee22345 Mon Sep 17 00:00:00 2001 From: Philip Peterson <1326208+philip-peterson@users.noreply.github.com> Date: Fri, 12 Jun 2026 00:07:07 -0700 Subject: [PATCH] fix dockerfile --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7c45b57..c7c18d9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -57,8 +57,7 @@ RUN composer config repositories.drupal composer https://packages.drupal.org/8 \ FROM php:8.5-fpm # Runtime libs for the compiled PHP extensions (no dev headers). -# If php:8.5-fpm is based on Debian Trixie, rename libpng16-16 → libpng16-16t64 -# and libzip4 → libzip4t64 if this apt-get step fails. +# php:8.5-fpm is Debian Trixie: libzip4 → libzip4t64. RUN apt-get update && apt-get install -y --no-install-recommends \ nginx \ supervisor \ @@ -67,7 +66,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ libpng16-16 \ libjpeg62-turbo \ libfreetype6 \ - libzip4 \ + libzip4t64 \ locales \ curl \ gettext-base \