From 26fc2eaff046e353bb8e76150428d6907237348b Mon Sep 17 00:00:00 2001 From: Volodymyr Kolesnykov Date: Wed, 13 Sep 2023 09:01:59 +0300 Subject: [PATCH] fix(php-fpm): fix PHP 8.3 build --- php-fpm/Dockerfile.83 | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/php-fpm/Dockerfile.83 b/php-fpm/Dockerfile.83 index 33dcfd53..7ad83092 100644 --- a/php-fpm/Dockerfile.83 +++ b/php-fpm/Dockerfile.83 @@ -7,6 +7,13 @@ RUN \ eatmydata add-apt-repository -y ppa:ondrej/php && \ eatmydata apt-get install -y php8.3-dev php8.3-xml && \ eatmydata apt-get install -y php-pear --no-install-recommends && \ + # see https://github.com/Automattic/vip-container-images/issues/536, https://github.com/oerdnj/deb.sury.org/issues/2025 + cp \ + /usr/share/libtool/build-aux/config.sub \ + /usr/share/libtool/build-aux/config.guess \ + /usr/share/libtool/build-aux/ltmain.sh \ + /usr/bin/shtool \ + /usr/lib/php/20230831/build && \ pecl install timezonedb && \ pecl install apcu && \ pecl install igbinary && \