From 65d7ae1643b5dba758a940571661a2138053c219 Mon Sep 17 00:00:00 2001 From: Thomas Gaudin Date: Fri, 16 Jan 2026 21:09:13 +0100 Subject: [PATCH 1/2] Add PHP 8.3 & 8.4 --- README.md | 3 ++- update.sh | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index adcdf0b..960b6ca 100644 --- a/README.md +++ b/README.md @@ -3,13 +3,14 @@ A PHP + Apache docker image with useful extensions preinstalled The following versions of the image are available: - - PHP 5.6 - PHP 7.2 - PHP 7.3 - PHP 7.4 - PHP 8.0 - PHP 8.1 - PHP 8.2 + - PHP 8.3 + - PHP 8.4 Apache `mod_rewrite` has been activated. diff --git a/update.sh b/update.sh index fe11acf..d70c957 100755 --- a/update.sh +++ b/update.sh @@ -2,7 +2,7 @@ set -euo pipefail -versions=(7.2 7.3 7.4 8.0 8.1 8.2) +versions=(7.2 7.3 7.4 8.0 8.1 8.2 8.3 8.4) for version in "${versions[@]}"; do From 3b130b7410b146aac4503c43d8717ecf3819b236 Mon Sep 17 00:00:00 2001 From: Thomas Gaudin Date: Fri, 16 Jan 2026 22:12:05 +0100 Subject: [PATCH 2/2] Drop PHP 7.2 The base image uses Debian 10, whose repos are offline since the release of Debian 13, so it cannot be built anymore. --- README.md | 1 - update.sh | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 960b6ca..1e02d5b 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,6 @@ A PHP + Apache docker image with useful extensions preinstalled The following versions of the image are available: - - PHP 7.2 - PHP 7.3 - PHP 7.4 - PHP 8.0 diff --git a/update.sh b/update.sh index d70c957..9d4351c 100755 --- a/update.sh +++ b/update.sh @@ -2,7 +2,7 @@ set -euo pipefail -versions=(7.2 7.3 7.4 8.0 8.1 8.2 8.3 8.4) +versions=(7.3 7.4 8.0 8.1 8.2 8.3 8.4) for version in "${versions[@]}"; do