From 05902a424eb8d5f6697f741149757fe6b11ac093 Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Tue, 2 Sep 2025 00:17:12 +0100 Subject: [PATCH] Upgrade PHP AL2023 --- php-83/Dockerfile | 2 +- php-84/Dockerfile | 2 +- php-85/Dockerfile | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/php-83/Dockerfile b/php-83/Dockerfile index cabc04e1..e3d03dac 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.24 +ARG VERSION_PHP=8.3.25 # Lambda uses a custom AMI named Amazon Linux 2023 diff --git a/php-84/Dockerfile b/php-84/Dockerfile index acfe8bd0..88c270ad 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.11 +ARG VERSION_PHP=8.4.12 # Lambda uses a custom AMI named Amazon Linux 2023 diff --git a/php-85/Dockerfile b/php-85/Dockerfile index 53b19b77..22602ea2 100644 --- a/php-85/Dockerfile +++ b/php-85/Dockerfile @@ -4,7 +4,7 @@ ARG IMAGE_VERSION_SUFFIX # https://www.php.net/downloads -ARG VERSION_PHP=8.5.0beta1 +ARG VERSION_PHP=8.5.0beta2 # Lambda uses a custom AMI named Amazon Linux 2023 @@ -113,7 +113,7 @@ WORKDIR ${PHP_BUILD_DIR} # --silent will hide the progress, but also the errors: we restore error messages with --show-error # --fail makes sure that curl returns an error instead of fetching the 404 page ARG VERSION_PHP -RUN curl --location --silent --show-error --fail https://downloads.php.net/~edorian/php-${VERSION_PHP}.tar.gz \ +RUN curl --location --silent --show-error --fail https://downloads.php.net/~daniels/php-${VERSION_PHP}.tar.gz \ | tar xzC . --strip-components=1 # Configure the build