From 631d93b060179e666e4f0f043009ce5187e79d76 Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Fri, 19 Dec 2025 22:15:09 +0000 Subject: [PATCH 1/2] Bump to latest PHP versions --- php-81/Dockerfile | 2 +- php-82/Dockerfile | 2 +- php-83/Dockerfile | 2 +- php-84/Dockerfile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/php-81/Dockerfile b/php-81/Dockerfile index 60086879..1ab8b25d 100644 --- a/php-81/Dockerfile +++ b/php-81/Dockerfile @@ -4,7 +4,7 @@ ARG IMAGE_VERSION_SUFFIX # https://www.php.net/downloads -ARG VERSION_PHP=8.1.32 +ARG VERSION_PHP=8.1.34 # Lambda uses a custom AMI named Amazon Linux 2 diff --git a/php-82/Dockerfile b/php-82/Dockerfile index 785f81ac..3d9fa45d 100644 --- a/php-82/Dockerfile +++ b/php-82/Dockerfile @@ -4,7 +4,7 @@ ARG IMAGE_VERSION_SUFFIX # https://www.php.net/downloads -ARG VERSION_PHP=8.2.29 +ARG VERSION_PHP=8.2.30 # Lambda uses a custom AMI named Amazon Linux 2 diff --git a/php-83/Dockerfile b/php-83/Dockerfile index a12d2ebe..ffe437d0 100644 --- a/php-83/Dockerfile +++ b/php-83/Dockerfile @@ -4,7 +4,7 @@ ARG IMAGE_VERSION_SUFFIX # https://www.php.net/downloads -ARG VERSION_PHP=8.3.28 +ARG VERSION_PHP=8.3.29 # Lambda uses a custom AMI named Amazon Linux 2 diff --git a/php-84/Dockerfile b/php-84/Dockerfile index 62aeb3eb..f88a490c 100644 --- a/php-84/Dockerfile +++ b/php-84/Dockerfile @@ -4,7 +4,7 @@ ARG IMAGE_VERSION_SUFFIX # https://www.php.net/downloads -ARG VERSION_PHP=8.4.15 +ARG VERSION_PHP=8.4.16 # Lambda uses a custom AMI named Amazon Linux 2 From b8d0263c75760adddb8f5c244e32e76d8902dc67 Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Fri, 19 Dec 2025 22:27:05 +0000 Subject: [PATCH 2/2] Bump to latest xdebug --- layers/fpm-dev/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layers/fpm-dev/Dockerfile b/layers/fpm-dev/Dockerfile index 1484eaf5..a486b912 100644 --- a/layers/fpm-dev/Dockerfile +++ b/layers/fpm-dev/Dockerfile @@ -10,7 +10,7 @@ ARG PHP_VERSION RUN mkdir -p /opt/bref/extensions # Install xdebug -RUN if [ $PHP_VERSION != "85" ]; then pecl install xdebug-3.4.5; fi +RUN if [ $PHP_VERSION != "85" ]; then pecl install xdebug-3.5.0; fi RUN if [ $PHP_VERSION != "85" ]; then cp $(php -r "echo ini_get('extension_dir');")/xdebug.so /opt/bref/extensions; fi # Install Blackfire