From bdacb766924d0a6b5cca2c3309430a400eeb61a0 Mon Sep 17 00:00:00 2001 From: bfren Date: Mon, 21 Jul 2025 18:30:01 +0100 Subject: [PATCH 1/2] Bumping version to 7.4.3 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index cb1d621..a263a9c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -7.4.2 \ No newline at end of file +7.4.3 \ No newline at end of file From ce7b3f111e8e0d27521aa0343b6925473049cad0 Mon Sep 17 00:00:00 2001 From: bfren Date: Mon, 21 Jul 2025 18:31:16 +0100 Subject: [PATCH 2/2] Using latest PHP base image --- 7.4/Dockerfile | 2 +- 8.0/Dockerfile | 2 +- 8.1/Dockerfile | 2 +- 8.2/Dockerfile | 2 +- 8.3/Dockerfile | 2 +- 8.4/Dockerfile | 2 +- generate-dockerfiles.sh | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/7.4/Dockerfile b/7.4/Dockerfile index a24604f..ce2b268 100644 --- a/7.4/Dockerfile +++ b/7.4/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /tmp RUN \ # get the Nu scripts from the PHP image overlay echo "Cloning Alpine overlay." && \ - apk add git && git clone --branch v2.4.2 https://github.com/bfren/docker-php.git && \ + apk add git && git clone --branch v2.4.3 https://github.com/bfren/docker-php.git && \ mkdir /overlay && \ mv docker-php/overlay/etc /overlay/ diff --git a/8.0/Dockerfile b/8.0/Dockerfile index 7de7846..ff4bf3e 100644 --- a/8.0/Dockerfile +++ b/8.0/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /tmp RUN \ # get the Nu scripts from the PHP image overlay echo "Cloning Alpine overlay." && \ - apk add git && git clone --branch v2.4.2 https://github.com/bfren/docker-php.git && \ + apk add git && git clone --branch v2.4.3 https://github.com/bfren/docker-php.git && \ mkdir /overlay && \ mv docker-php/overlay/etc /overlay/ diff --git a/8.1/Dockerfile b/8.1/Dockerfile index 8e7d080..160d20e 100644 --- a/8.1/Dockerfile +++ b/8.1/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /tmp RUN \ # get the Nu scripts from the PHP image overlay echo "Cloning Alpine overlay." && \ - apk add git && git clone --branch v2.4.2 https://github.com/bfren/docker-php.git && \ + apk add git && git clone --branch v2.4.3 https://github.com/bfren/docker-php.git && \ mkdir /overlay && \ mv docker-php/overlay/etc /overlay/ diff --git a/8.2/Dockerfile b/8.2/Dockerfile index f661376..fb97314 100644 --- a/8.2/Dockerfile +++ b/8.2/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /tmp RUN \ # get the Nu scripts from the PHP image overlay echo "Cloning Alpine overlay." && \ - apk add git && git clone --branch v2.4.2 https://github.com/bfren/docker-php.git && \ + apk add git && git clone --branch v2.4.3 https://github.com/bfren/docker-php.git && \ mkdir /overlay && \ mv docker-php/overlay/etc /overlay/ diff --git a/8.3/Dockerfile b/8.3/Dockerfile index 3be3dde..70f834d 100644 --- a/8.3/Dockerfile +++ b/8.3/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /tmp RUN \ # get the Nu scripts from the PHP image overlay echo "Cloning Alpine overlay." && \ - apk add git && git clone --branch v2.4.2 https://github.com/bfren/docker-php.git && \ + apk add git && git clone --branch v2.4.3 https://github.com/bfren/docker-php.git && \ mkdir /overlay && \ mv docker-php/overlay/etc /overlay/ diff --git a/8.4/Dockerfile b/8.4/Dockerfile index 8050d39..90e22b4 100644 --- a/8.4/Dockerfile +++ b/8.4/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /tmp RUN \ # get the Nu scripts from the PHP image overlay echo "Cloning Alpine overlay." && \ - apk add git && git clone --branch v2.4.2 https://github.com/bfren/docker-php.git && \ + apk add git && git clone --branch v2.4.3 https://github.com/bfren/docker-php.git && \ mkdir /overlay && \ mv docker-php/overlay/etc /overlay/ diff --git a/generate-dockerfiles.sh b/generate-dockerfiles.sh index 59bfc3b..5dd6782 100755 --- a/generate-dockerfiles.sh +++ b/generate-dockerfiles.sh @@ -5,7 +5,7 @@ set -euo pipefail docker pull bfren/alpine BASE_VERSION="6.5.4" -PHP_BRANCH="v2.4.2" +PHP_BRANCH="v2.4.3" PHP_VERSIONS="7.4 8.0 8.1 8.2 8.3 8.4" for V in ${PHP_VERSIONS} ; do