diff --git a/8.1-rc/alpine3.18/cli/Dockerfile b/8.1-rc/alpine3.18/cli/Dockerfile index 3e007a1dc..3bc34fe65 100644 --- a/8.1-rc/alpine3.18/cli/Dockerfile +++ b/8.1-rc/alpine3.18/cli/Dockerfile @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.1-rc/alpine3.18/fpm/Dockerfile b/8.1-rc/alpine3.18/fpm/Dockerfile index 15ee882dc..32798a963 100644 --- a/8.1-rc/alpine3.18/fpm/Dockerfile +++ b/8.1-rc/alpine3.18/fpm/Dockerfile @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.1-rc/alpine3.18/zts/Dockerfile b/8.1-rc/alpine3.18/zts/Dockerfile index 22af46dce..93656e271 100644 --- a/8.1-rc/alpine3.18/zts/Dockerfile +++ b/8.1-rc/alpine3.18/zts/Dockerfile @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.1-rc/alpine3.17/cli/Dockerfile b/8.1-rc/alpine3.19/cli/Dockerfile similarity index 98% rename from 8.1-rc/alpine3.17/cli/Dockerfile rename to 8.1-rc/alpine3.19/cli/Dockerfile index 71c9544bc..50a51d3a3 100644 --- a/8.1-rc/alpine3.17/cli/Dockerfile +++ b/8.1-rc/alpine3.19/cli/Dockerfile @@ -4,7 +4,7 @@ # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM alpine:3.17 +FROM alpine:3.19 # dependencies required for running "phpize" # these get automatically installed and removed by "docker-php-ext-*" (unless they're already installed) @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.1-rc/alpine3.17/cli/docker-php-entrypoint b/8.1-rc/alpine3.19/cli/docker-php-entrypoint similarity index 100% rename from 8.1-rc/alpine3.17/cli/docker-php-entrypoint rename to 8.1-rc/alpine3.19/cli/docker-php-entrypoint diff --git a/8.1-rc/alpine3.17/cli/docker-php-ext-configure b/8.1-rc/alpine3.19/cli/docker-php-ext-configure similarity index 100% rename from 8.1-rc/alpine3.17/cli/docker-php-ext-configure rename to 8.1-rc/alpine3.19/cli/docker-php-ext-configure diff --git a/8.1-rc/alpine3.17/cli/docker-php-ext-enable b/8.1-rc/alpine3.19/cli/docker-php-ext-enable similarity index 100% rename from 8.1-rc/alpine3.17/cli/docker-php-ext-enable rename to 8.1-rc/alpine3.19/cli/docker-php-ext-enable diff --git a/8.1-rc/alpine3.17/cli/docker-php-ext-install b/8.1-rc/alpine3.19/cli/docker-php-ext-install similarity index 100% rename from 8.1-rc/alpine3.17/cli/docker-php-ext-install rename to 8.1-rc/alpine3.19/cli/docker-php-ext-install diff --git a/8.1-rc/alpine3.17/cli/docker-php-source b/8.1-rc/alpine3.19/cli/docker-php-source similarity index 100% rename from 8.1-rc/alpine3.17/cli/docker-php-source rename to 8.1-rc/alpine3.19/cli/docker-php-source diff --git a/8.1-rc/alpine3.17/fpm/Dockerfile b/8.1-rc/alpine3.19/fpm/Dockerfile similarity index 99% rename from 8.1-rc/alpine3.17/fpm/Dockerfile rename to 8.1-rc/alpine3.19/fpm/Dockerfile index 87fc7fbab..024171b2e 100644 --- a/8.1-rc/alpine3.17/fpm/Dockerfile +++ b/8.1-rc/alpine3.19/fpm/Dockerfile @@ -4,7 +4,7 @@ # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM alpine:3.17 +FROM alpine:3.19 # dependencies required for running "phpize" # these get automatically installed and removed by "docker-php-ext-*" (unless they're already installed) @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.1-rc/alpine3.17/fpm/docker-php-entrypoint b/8.1-rc/alpine3.19/fpm/docker-php-entrypoint similarity index 100% rename from 8.1-rc/alpine3.17/fpm/docker-php-entrypoint rename to 8.1-rc/alpine3.19/fpm/docker-php-entrypoint diff --git a/8.1-rc/alpine3.17/fpm/docker-php-ext-configure b/8.1-rc/alpine3.19/fpm/docker-php-ext-configure similarity index 100% rename from 8.1-rc/alpine3.17/fpm/docker-php-ext-configure rename to 8.1-rc/alpine3.19/fpm/docker-php-ext-configure diff --git a/8.1-rc/alpine3.17/fpm/docker-php-ext-enable b/8.1-rc/alpine3.19/fpm/docker-php-ext-enable similarity index 100% rename from 8.1-rc/alpine3.17/fpm/docker-php-ext-enable rename to 8.1-rc/alpine3.19/fpm/docker-php-ext-enable diff --git a/8.1-rc/alpine3.17/fpm/docker-php-ext-install b/8.1-rc/alpine3.19/fpm/docker-php-ext-install similarity index 100% rename from 8.1-rc/alpine3.17/fpm/docker-php-ext-install rename to 8.1-rc/alpine3.19/fpm/docker-php-ext-install diff --git a/8.1-rc/alpine3.17/fpm/docker-php-source b/8.1-rc/alpine3.19/fpm/docker-php-source similarity index 100% rename from 8.1-rc/alpine3.17/fpm/docker-php-source rename to 8.1-rc/alpine3.19/fpm/docker-php-source diff --git a/8.1-rc/alpine3.17/zts/Dockerfile b/8.1-rc/alpine3.19/zts/Dockerfile similarity index 98% rename from 8.1-rc/alpine3.17/zts/Dockerfile rename to 8.1-rc/alpine3.19/zts/Dockerfile index f35fd4e49..247d63216 100644 --- a/8.1-rc/alpine3.17/zts/Dockerfile +++ b/8.1-rc/alpine3.19/zts/Dockerfile @@ -4,7 +4,7 @@ # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM alpine:3.17 +FROM alpine:3.19 # dependencies required for running "phpize" # these get automatically installed and removed by "docker-php-ext-*" (unless they're already installed) @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.1-rc/alpine3.17/zts/docker-php-entrypoint b/8.1-rc/alpine3.19/zts/docker-php-entrypoint similarity index 100% rename from 8.1-rc/alpine3.17/zts/docker-php-entrypoint rename to 8.1-rc/alpine3.19/zts/docker-php-entrypoint diff --git a/8.1-rc/alpine3.17/zts/docker-php-ext-configure b/8.1-rc/alpine3.19/zts/docker-php-ext-configure similarity index 100% rename from 8.1-rc/alpine3.17/zts/docker-php-ext-configure rename to 8.1-rc/alpine3.19/zts/docker-php-ext-configure diff --git a/8.1-rc/alpine3.17/zts/docker-php-ext-enable b/8.1-rc/alpine3.19/zts/docker-php-ext-enable similarity index 100% rename from 8.1-rc/alpine3.17/zts/docker-php-ext-enable rename to 8.1-rc/alpine3.19/zts/docker-php-ext-enable diff --git a/8.1-rc/alpine3.17/zts/docker-php-ext-install b/8.1-rc/alpine3.19/zts/docker-php-ext-install similarity index 100% rename from 8.1-rc/alpine3.17/zts/docker-php-ext-install rename to 8.1-rc/alpine3.19/zts/docker-php-ext-install diff --git a/8.1-rc/alpine3.17/zts/docker-php-source b/8.1-rc/alpine3.19/zts/docker-php-source similarity index 100% rename from 8.1-rc/alpine3.17/zts/docker-php-source rename to 8.1-rc/alpine3.19/zts/docker-php-source diff --git a/8.1/alpine3.18/cli/Dockerfile b/8.1/alpine3.18/cli/Dockerfile index 53304bf2b..347ace964 100644 --- a/8.1/alpine3.18/cli/Dockerfile +++ b/8.1/alpine3.18/cli/Dockerfile @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.1/alpine3.18/fpm/Dockerfile b/8.1/alpine3.18/fpm/Dockerfile index 8e36343ee..4452813d3 100644 --- a/8.1/alpine3.18/fpm/Dockerfile +++ b/8.1/alpine3.18/fpm/Dockerfile @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.1/alpine3.18/zts/Dockerfile b/8.1/alpine3.18/zts/Dockerfile index ed9a750c9..8ebbf4ecd 100644 --- a/8.1/alpine3.18/zts/Dockerfile +++ b/8.1/alpine3.18/zts/Dockerfile @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.1/alpine3.17/cli/Dockerfile b/8.1/alpine3.19/cli/Dockerfile similarity index 98% rename from 8.1/alpine3.17/cli/Dockerfile rename to 8.1/alpine3.19/cli/Dockerfile index b9cfe367b..8837bcc30 100644 --- a/8.1/alpine3.17/cli/Dockerfile +++ b/8.1/alpine3.19/cli/Dockerfile @@ -4,7 +4,7 @@ # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM alpine:3.17 +FROM alpine:3.19 # dependencies required for running "phpize" # these get automatically installed and removed by "docker-php-ext-*" (unless they're already installed) @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.1/alpine3.17/cli/docker-php-entrypoint b/8.1/alpine3.19/cli/docker-php-entrypoint similarity index 100% rename from 8.1/alpine3.17/cli/docker-php-entrypoint rename to 8.1/alpine3.19/cli/docker-php-entrypoint diff --git a/8.1/alpine3.17/cli/docker-php-ext-configure b/8.1/alpine3.19/cli/docker-php-ext-configure similarity index 100% rename from 8.1/alpine3.17/cli/docker-php-ext-configure rename to 8.1/alpine3.19/cli/docker-php-ext-configure diff --git a/8.1/alpine3.17/cli/docker-php-ext-enable b/8.1/alpine3.19/cli/docker-php-ext-enable similarity index 100% rename from 8.1/alpine3.17/cli/docker-php-ext-enable rename to 8.1/alpine3.19/cli/docker-php-ext-enable diff --git a/8.1/alpine3.17/cli/docker-php-ext-install b/8.1/alpine3.19/cli/docker-php-ext-install similarity index 100% rename from 8.1/alpine3.17/cli/docker-php-ext-install rename to 8.1/alpine3.19/cli/docker-php-ext-install diff --git a/8.1/alpine3.17/cli/docker-php-source b/8.1/alpine3.19/cli/docker-php-source similarity index 100% rename from 8.1/alpine3.17/cli/docker-php-source rename to 8.1/alpine3.19/cli/docker-php-source diff --git a/8.1/alpine3.17/fpm/Dockerfile b/8.1/alpine3.19/fpm/Dockerfile similarity index 99% rename from 8.1/alpine3.17/fpm/Dockerfile rename to 8.1/alpine3.19/fpm/Dockerfile index 4f5b10c87..28951f75b 100644 --- a/8.1/alpine3.17/fpm/Dockerfile +++ b/8.1/alpine3.19/fpm/Dockerfile @@ -4,7 +4,7 @@ # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM alpine:3.17 +FROM alpine:3.19 # dependencies required for running "phpize" # these get automatically installed and removed by "docker-php-ext-*" (unless they're already installed) @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.1/alpine3.17/fpm/docker-php-entrypoint b/8.1/alpine3.19/fpm/docker-php-entrypoint similarity index 100% rename from 8.1/alpine3.17/fpm/docker-php-entrypoint rename to 8.1/alpine3.19/fpm/docker-php-entrypoint diff --git a/8.1/alpine3.17/fpm/docker-php-ext-configure b/8.1/alpine3.19/fpm/docker-php-ext-configure similarity index 100% rename from 8.1/alpine3.17/fpm/docker-php-ext-configure rename to 8.1/alpine3.19/fpm/docker-php-ext-configure diff --git a/8.1/alpine3.17/fpm/docker-php-ext-enable b/8.1/alpine3.19/fpm/docker-php-ext-enable similarity index 100% rename from 8.1/alpine3.17/fpm/docker-php-ext-enable rename to 8.1/alpine3.19/fpm/docker-php-ext-enable diff --git a/8.1/alpine3.17/fpm/docker-php-ext-install b/8.1/alpine3.19/fpm/docker-php-ext-install similarity index 100% rename from 8.1/alpine3.17/fpm/docker-php-ext-install rename to 8.1/alpine3.19/fpm/docker-php-ext-install diff --git a/8.1/alpine3.17/fpm/docker-php-source b/8.1/alpine3.19/fpm/docker-php-source similarity index 100% rename from 8.1/alpine3.17/fpm/docker-php-source rename to 8.1/alpine3.19/fpm/docker-php-source diff --git a/8.1/alpine3.17/zts/Dockerfile b/8.1/alpine3.19/zts/Dockerfile similarity index 98% rename from 8.1/alpine3.17/zts/Dockerfile rename to 8.1/alpine3.19/zts/Dockerfile index 85928c97e..258f3068a 100644 --- a/8.1/alpine3.17/zts/Dockerfile +++ b/8.1/alpine3.19/zts/Dockerfile @@ -4,7 +4,7 @@ # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM alpine:3.17 +FROM alpine:3.19 # dependencies required for running "phpize" # these get automatically installed and removed by "docker-php-ext-*" (unless they're already installed) @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.1/alpine3.17/zts/docker-php-entrypoint b/8.1/alpine3.19/zts/docker-php-entrypoint similarity index 100% rename from 8.1/alpine3.17/zts/docker-php-entrypoint rename to 8.1/alpine3.19/zts/docker-php-entrypoint diff --git a/8.1/alpine3.17/zts/docker-php-ext-configure b/8.1/alpine3.19/zts/docker-php-ext-configure similarity index 100% rename from 8.1/alpine3.17/zts/docker-php-ext-configure rename to 8.1/alpine3.19/zts/docker-php-ext-configure diff --git a/8.1/alpine3.17/zts/docker-php-ext-enable b/8.1/alpine3.19/zts/docker-php-ext-enable similarity index 100% rename from 8.1/alpine3.17/zts/docker-php-ext-enable rename to 8.1/alpine3.19/zts/docker-php-ext-enable diff --git a/8.1/alpine3.17/zts/docker-php-ext-install b/8.1/alpine3.19/zts/docker-php-ext-install similarity index 100% rename from 8.1/alpine3.17/zts/docker-php-ext-install rename to 8.1/alpine3.19/zts/docker-php-ext-install diff --git a/8.1/alpine3.17/zts/docker-php-source b/8.1/alpine3.19/zts/docker-php-source similarity index 100% rename from 8.1/alpine3.17/zts/docker-php-source rename to 8.1/alpine3.19/zts/docker-php-source diff --git a/8.2-rc/alpine3.18/cli/Dockerfile b/8.2-rc/alpine3.18/cli/Dockerfile index d218699db..9531d7991 100644 --- a/8.2-rc/alpine3.18/cli/Dockerfile +++ b/8.2-rc/alpine3.18/cli/Dockerfile @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.2-rc/alpine3.18/fpm/Dockerfile b/8.2-rc/alpine3.18/fpm/Dockerfile index 8375a6288..0b641518d 100644 --- a/8.2-rc/alpine3.18/fpm/Dockerfile +++ b/8.2-rc/alpine3.18/fpm/Dockerfile @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.2-rc/alpine3.18/zts/Dockerfile b/8.2-rc/alpine3.18/zts/Dockerfile index 3cdd757c8..e019e556c 100644 --- a/8.2-rc/alpine3.18/zts/Dockerfile +++ b/8.2-rc/alpine3.18/zts/Dockerfile @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.2-rc/alpine3.17/cli/Dockerfile b/8.2-rc/alpine3.19/cli/Dockerfile similarity index 98% rename from 8.2-rc/alpine3.17/cli/Dockerfile rename to 8.2-rc/alpine3.19/cli/Dockerfile index c7102155c..069023b0f 100644 --- a/8.2-rc/alpine3.17/cli/Dockerfile +++ b/8.2-rc/alpine3.19/cli/Dockerfile @@ -4,7 +4,7 @@ # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM alpine:3.17 +FROM alpine:3.19 # dependencies required for running "phpize" # these get automatically installed and removed by "docker-php-ext-*" (unless they're already installed) @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.2-rc/alpine3.17/cli/docker-php-entrypoint b/8.2-rc/alpine3.19/cli/docker-php-entrypoint similarity index 100% rename from 8.2-rc/alpine3.17/cli/docker-php-entrypoint rename to 8.2-rc/alpine3.19/cli/docker-php-entrypoint diff --git a/8.2-rc/alpine3.17/cli/docker-php-ext-configure b/8.2-rc/alpine3.19/cli/docker-php-ext-configure similarity index 100% rename from 8.2-rc/alpine3.17/cli/docker-php-ext-configure rename to 8.2-rc/alpine3.19/cli/docker-php-ext-configure diff --git a/8.2-rc/alpine3.17/cli/docker-php-ext-enable b/8.2-rc/alpine3.19/cli/docker-php-ext-enable similarity index 100% rename from 8.2-rc/alpine3.17/cli/docker-php-ext-enable rename to 8.2-rc/alpine3.19/cli/docker-php-ext-enable diff --git a/8.2-rc/alpine3.17/cli/docker-php-ext-install b/8.2-rc/alpine3.19/cli/docker-php-ext-install similarity index 100% rename from 8.2-rc/alpine3.17/cli/docker-php-ext-install rename to 8.2-rc/alpine3.19/cli/docker-php-ext-install diff --git a/8.2-rc/alpine3.17/cli/docker-php-source b/8.2-rc/alpine3.19/cli/docker-php-source similarity index 100% rename from 8.2-rc/alpine3.17/cli/docker-php-source rename to 8.2-rc/alpine3.19/cli/docker-php-source diff --git a/8.2-rc/alpine3.17/fpm/Dockerfile b/8.2-rc/alpine3.19/fpm/Dockerfile similarity index 99% rename from 8.2-rc/alpine3.17/fpm/Dockerfile rename to 8.2-rc/alpine3.19/fpm/Dockerfile index 42c018e64..f65c877f9 100644 --- a/8.2-rc/alpine3.17/fpm/Dockerfile +++ b/8.2-rc/alpine3.19/fpm/Dockerfile @@ -4,7 +4,7 @@ # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM alpine:3.17 +FROM alpine:3.19 # dependencies required for running "phpize" # these get automatically installed and removed by "docker-php-ext-*" (unless they're already installed) @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.2-rc/alpine3.17/fpm/docker-php-entrypoint b/8.2-rc/alpine3.19/fpm/docker-php-entrypoint similarity index 100% rename from 8.2-rc/alpine3.17/fpm/docker-php-entrypoint rename to 8.2-rc/alpine3.19/fpm/docker-php-entrypoint diff --git a/8.2-rc/alpine3.17/fpm/docker-php-ext-configure b/8.2-rc/alpine3.19/fpm/docker-php-ext-configure similarity index 100% rename from 8.2-rc/alpine3.17/fpm/docker-php-ext-configure rename to 8.2-rc/alpine3.19/fpm/docker-php-ext-configure diff --git a/8.2-rc/alpine3.17/fpm/docker-php-ext-enable b/8.2-rc/alpine3.19/fpm/docker-php-ext-enable similarity index 100% rename from 8.2-rc/alpine3.17/fpm/docker-php-ext-enable rename to 8.2-rc/alpine3.19/fpm/docker-php-ext-enable diff --git a/8.2-rc/alpine3.17/fpm/docker-php-ext-install b/8.2-rc/alpine3.19/fpm/docker-php-ext-install similarity index 100% rename from 8.2-rc/alpine3.17/fpm/docker-php-ext-install rename to 8.2-rc/alpine3.19/fpm/docker-php-ext-install diff --git a/8.2-rc/alpine3.17/fpm/docker-php-source b/8.2-rc/alpine3.19/fpm/docker-php-source similarity index 100% rename from 8.2-rc/alpine3.17/fpm/docker-php-source rename to 8.2-rc/alpine3.19/fpm/docker-php-source diff --git a/8.2-rc/alpine3.17/zts/Dockerfile b/8.2-rc/alpine3.19/zts/Dockerfile similarity index 98% rename from 8.2-rc/alpine3.17/zts/Dockerfile rename to 8.2-rc/alpine3.19/zts/Dockerfile index 9c2fda9a0..3332c2451 100644 --- a/8.2-rc/alpine3.17/zts/Dockerfile +++ b/8.2-rc/alpine3.19/zts/Dockerfile @@ -4,7 +4,7 @@ # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM alpine:3.17 +FROM alpine:3.19 # dependencies required for running "phpize" # these get automatically installed and removed by "docker-php-ext-*" (unless they're already installed) @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.2-rc/alpine3.17/zts/docker-php-entrypoint b/8.2-rc/alpine3.19/zts/docker-php-entrypoint similarity index 100% rename from 8.2-rc/alpine3.17/zts/docker-php-entrypoint rename to 8.2-rc/alpine3.19/zts/docker-php-entrypoint diff --git a/8.2-rc/alpine3.17/zts/docker-php-ext-configure b/8.2-rc/alpine3.19/zts/docker-php-ext-configure similarity index 100% rename from 8.2-rc/alpine3.17/zts/docker-php-ext-configure rename to 8.2-rc/alpine3.19/zts/docker-php-ext-configure diff --git a/8.2-rc/alpine3.17/zts/docker-php-ext-enable b/8.2-rc/alpine3.19/zts/docker-php-ext-enable similarity index 100% rename from 8.2-rc/alpine3.17/zts/docker-php-ext-enable rename to 8.2-rc/alpine3.19/zts/docker-php-ext-enable diff --git a/8.2-rc/alpine3.17/zts/docker-php-ext-install b/8.2-rc/alpine3.19/zts/docker-php-ext-install similarity index 100% rename from 8.2-rc/alpine3.17/zts/docker-php-ext-install rename to 8.2-rc/alpine3.19/zts/docker-php-ext-install diff --git a/8.2-rc/alpine3.17/zts/docker-php-source b/8.2-rc/alpine3.19/zts/docker-php-source similarity index 100% rename from 8.2-rc/alpine3.17/zts/docker-php-source rename to 8.2-rc/alpine3.19/zts/docker-php-source diff --git a/8.2/alpine3.18/cli/Dockerfile b/8.2/alpine3.18/cli/Dockerfile index 88860c848..ba9cb344f 100644 --- a/8.2/alpine3.18/cli/Dockerfile +++ b/8.2/alpine3.18/cli/Dockerfile @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.2/alpine3.18/fpm/Dockerfile b/8.2/alpine3.18/fpm/Dockerfile index 93f9a8522..ff01c7c94 100644 --- a/8.2/alpine3.18/fpm/Dockerfile +++ b/8.2/alpine3.18/fpm/Dockerfile @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.2/alpine3.18/zts/Dockerfile b/8.2/alpine3.18/zts/Dockerfile index 0bc8afbd5..81ad9ae2a 100644 --- a/8.2/alpine3.18/zts/Dockerfile +++ b/8.2/alpine3.18/zts/Dockerfile @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.2/alpine3.17/cli/Dockerfile b/8.2/alpine3.19/cli/Dockerfile similarity index 98% rename from 8.2/alpine3.17/cli/Dockerfile rename to 8.2/alpine3.19/cli/Dockerfile index 05ed58aa5..b75908081 100644 --- a/8.2/alpine3.17/cli/Dockerfile +++ b/8.2/alpine3.19/cli/Dockerfile @@ -4,7 +4,7 @@ # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM alpine:3.17 +FROM alpine:3.19 # dependencies required for running "phpize" # these get automatically installed and removed by "docker-php-ext-*" (unless they're already installed) @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.2/alpine3.17/cli/docker-php-entrypoint b/8.2/alpine3.19/cli/docker-php-entrypoint similarity index 100% rename from 8.2/alpine3.17/cli/docker-php-entrypoint rename to 8.2/alpine3.19/cli/docker-php-entrypoint diff --git a/8.2/alpine3.17/cli/docker-php-ext-configure b/8.2/alpine3.19/cli/docker-php-ext-configure similarity index 100% rename from 8.2/alpine3.17/cli/docker-php-ext-configure rename to 8.2/alpine3.19/cli/docker-php-ext-configure diff --git a/8.2/alpine3.17/cli/docker-php-ext-enable b/8.2/alpine3.19/cli/docker-php-ext-enable similarity index 100% rename from 8.2/alpine3.17/cli/docker-php-ext-enable rename to 8.2/alpine3.19/cli/docker-php-ext-enable diff --git a/8.2/alpine3.17/cli/docker-php-ext-install b/8.2/alpine3.19/cli/docker-php-ext-install similarity index 100% rename from 8.2/alpine3.17/cli/docker-php-ext-install rename to 8.2/alpine3.19/cli/docker-php-ext-install diff --git a/8.2/alpine3.17/cli/docker-php-source b/8.2/alpine3.19/cli/docker-php-source similarity index 100% rename from 8.2/alpine3.17/cli/docker-php-source rename to 8.2/alpine3.19/cli/docker-php-source diff --git a/8.2/alpine3.17/fpm/Dockerfile b/8.2/alpine3.19/fpm/Dockerfile similarity index 99% rename from 8.2/alpine3.17/fpm/Dockerfile rename to 8.2/alpine3.19/fpm/Dockerfile index 9155592a6..6a84fd57f 100644 --- a/8.2/alpine3.17/fpm/Dockerfile +++ b/8.2/alpine3.19/fpm/Dockerfile @@ -4,7 +4,7 @@ # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM alpine:3.17 +FROM alpine:3.19 # dependencies required for running "phpize" # these get automatically installed and removed by "docker-php-ext-*" (unless they're already installed) @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.2/alpine3.17/fpm/docker-php-entrypoint b/8.2/alpine3.19/fpm/docker-php-entrypoint similarity index 100% rename from 8.2/alpine3.17/fpm/docker-php-entrypoint rename to 8.2/alpine3.19/fpm/docker-php-entrypoint diff --git a/8.2/alpine3.17/fpm/docker-php-ext-configure b/8.2/alpine3.19/fpm/docker-php-ext-configure similarity index 100% rename from 8.2/alpine3.17/fpm/docker-php-ext-configure rename to 8.2/alpine3.19/fpm/docker-php-ext-configure diff --git a/8.2/alpine3.17/fpm/docker-php-ext-enable b/8.2/alpine3.19/fpm/docker-php-ext-enable similarity index 100% rename from 8.2/alpine3.17/fpm/docker-php-ext-enable rename to 8.2/alpine3.19/fpm/docker-php-ext-enable diff --git a/8.2/alpine3.17/fpm/docker-php-ext-install b/8.2/alpine3.19/fpm/docker-php-ext-install similarity index 100% rename from 8.2/alpine3.17/fpm/docker-php-ext-install rename to 8.2/alpine3.19/fpm/docker-php-ext-install diff --git a/8.2/alpine3.17/fpm/docker-php-source b/8.2/alpine3.19/fpm/docker-php-source similarity index 100% rename from 8.2/alpine3.17/fpm/docker-php-source rename to 8.2/alpine3.19/fpm/docker-php-source diff --git a/8.2/alpine3.17/zts/Dockerfile b/8.2/alpine3.19/zts/Dockerfile similarity index 98% rename from 8.2/alpine3.17/zts/Dockerfile rename to 8.2/alpine3.19/zts/Dockerfile index 8de6fc3b1..49cbbfcc6 100644 --- a/8.2/alpine3.17/zts/Dockerfile +++ b/8.2/alpine3.19/zts/Dockerfile @@ -4,7 +4,7 @@ # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM alpine:3.17 +FROM alpine:3.19 # dependencies required for running "phpize" # these get automatically installed and removed by "docker-php-ext-*" (unless they're already installed) @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.2/alpine3.17/zts/docker-php-entrypoint b/8.2/alpine3.19/zts/docker-php-entrypoint similarity index 100% rename from 8.2/alpine3.17/zts/docker-php-entrypoint rename to 8.2/alpine3.19/zts/docker-php-entrypoint diff --git a/8.2/alpine3.17/zts/docker-php-ext-configure b/8.2/alpine3.19/zts/docker-php-ext-configure similarity index 100% rename from 8.2/alpine3.17/zts/docker-php-ext-configure rename to 8.2/alpine3.19/zts/docker-php-ext-configure diff --git a/8.2/alpine3.17/zts/docker-php-ext-enable b/8.2/alpine3.19/zts/docker-php-ext-enable similarity index 100% rename from 8.2/alpine3.17/zts/docker-php-ext-enable rename to 8.2/alpine3.19/zts/docker-php-ext-enable diff --git a/8.2/alpine3.17/zts/docker-php-ext-install b/8.2/alpine3.19/zts/docker-php-ext-install similarity index 100% rename from 8.2/alpine3.17/zts/docker-php-ext-install rename to 8.2/alpine3.19/zts/docker-php-ext-install diff --git a/8.2/alpine3.17/zts/docker-php-source b/8.2/alpine3.19/zts/docker-php-source similarity index 100% rename from 8.2/alpine3.17/zts/docker-php-source rename to 8.2/alpine3.19/zts/docker-php-source diff --git a/8.3-rc/alpine3.18/cli/Dockerfile b/8.3-rc/alpine3.18/cli/Dockerfile index 5c3a0a2fc..fada155dc 100644 --- a/8.3-rc/alpine3.18/cli/Dockerfile +++ b/8.3-rc/alpine3.18/cli/Dockerfile @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.3-rc/alpine3.18/fpm/Dockerfile b/8.3-rc/alpine3.18/fpm/Dockerfile index 48e934225..0b4c002a0 100644 --- a/8.3-rc/alpine3.18/fpm/Dockerfile +++ b/8.3-rc/alpine3.18/fpm/Dockerfile @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.3-rc/alpine3.18/zts/Dockerfile b/8.3-rc/alpine3.18/zts/Dockerfile index cad026eab..c3574c4a7 100644 --- a/8.3-rc/alpine3.18/zts/Dockerfile +++ b/8.3-rc/alpine3.18/zts/Dockerfile @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.3-rc/alpine3.17/cli/Dockerfile b/8.3-rc/alpine3.19/cli/Dockerfile similarity index 98% rename from 8.3-rc/alpine3.17/cli/Dockerfile rename to 8.3-rc/alpine3.19/cli/Dockerfile index dc636745b..ea9d85b31 100644 --- a/8.3-rc/alpine3.17/cli/Dockerfile +++ b/8.3-rc/alpine3.19/cli/Dockerfile @@ -4,7 +4,7 @@ # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM alpine:3.17 +FROM alpine:3.19 # dependencies required for running "phpize" # these get automatically installed and removed by "docker-php-ext-*" (unless they're already installed) @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.3-rc/alpine3.17/cli/docker-php-entrypoint b/8.3-rc/alpine3.19/cli/docker-php-entrypoint similarity index 100% rename from 8.3-rc/alpine3.17/cli/docker-php-entrypoint rename to 8.3-rc/alpine3.19/cli/docker-php-entrypoint diff --git a/8.3-rc/alpine3.17/cli/docker-php-ext-configure b/8.3-rc/alpine3.19/cli/docker-php-ext-configure similarity index 100% rename from 8.3-rc/alpine3.17/cli/docker-php-ext-configure rename to 8.3-rc/alpine3.19/cli/docker-php-ext-configure diff --git a/8.3-rc/alpine3.17/cli/docker-php-ext-enable b/8.3-rc/alpine3.19/cli/docker-php-ext-enable similarity index 100% rename from 8.3-rc/alpine3.17/cli/docker-php-ext-enable rename to 8.3-rc/alpine3.19/cli/docker-php-ext-enable diff --git a/8.3-rc/alpine3.17/cli/docker-php-ext-install b/8.3-rc/alpine3.19/cli/docker-php-ext-install similarity index 100% rename from 8.3-rc/alpine3.17/cli/docker-php-ext-install rename to 8.3-rc/alpine3.19/cli/docker-php-ext-install diff --git a/8.3-rc/alpine3.17/cli/docker-php-source b/8.3-rc/alpine3.19/cli/docker-php-source similarity index 100% rename from 8.3-rc/alpine3.17/cli/docker-php-source rename to 8.3-rc/alpine3.19/cli/docker-php-source diff --git a/8.3-rc/alpine3.17/fpm/Dockerfile b/8.3-rc/alpine3.19/fpm/Dockerfile similarity index 99% rename from 8.3-rc/alpine3.17/fpm/Dockerfile rename to 8.3-rc/alpine3.19/fpm/Dockerfile index ecfff8a52..fcc29b33a 100644 --- a/8.3-rc/alpine3.17/fpm/Dockerfile +++ b/8.3-rc/alpine3.19/fpm/Dockerfile @@ -4,7 +4,7 @@ # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM alpine:3.17 +FROM alpine:3.19 # dependencies required for running "phpize" # these get automatically installed and removed by "docker-php-ext-*" (unless they're already installed) @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.3-rc/alpine3.17/fpm/docker-php-entrypoint b/8.3-rc/alpine3.19/fpm/docker-php-entrypoint similarity index 100% rename from 8.3-rc/alpine3.17/fpm/docker-php-entrypoint rename to 8.3-rc/alpine3.19/fpm/docker-php-entrypoint diff --git a/8.3-rc/alpine3.17/fpm/docker-php-ext-configure b/8.3-rc/alpine3.19/fpm/docker-php-ext-configure similarity index 100% rename from 8.3-rc/alpine3.17/fpm/docker-php-ext-configure rename to 8.3-rc/alpine3.19/fpm/docker-php-ext-configure diff --git a/8.3-rc/alpine3.17/fpm/docker-php-ext-enable b/8.3-rc/alpine3.19/fpm/docker-php-ext-enable similarity index 100% rename from 8.3-rc/alpine3.17/fpm/docker-php-ext-enable rename to 8.3-rc/alpine3.19/fpm/docker-php-ext-enable diff --git a/8.3-rc/alpine3.17/fpm/docker-php-ext-install b/8.3-rc/alpine3.19/fpm/docker-php-ext-install similarity index 100% rename from 8.3-rc/alpine3.17/fpm/docker-php-ext-install rename to 8.3-rc/alpine3.19/fpm/docker-php-ext-install diff --git a/8.3-rc/alpine3.17/fpm/docker-php-source b/8.3-rc/alpine3.19/fpm/docker-php-source similarity index 100% rename from 8.3-rc/alpine3.17/fpm/docker-php-source rename to 8.3-rc/alpine3.19/fpm/docker-php-source diff --git a/8.3-rc/alpine3.17/zts/Dockerfile b/8.3-rc/alpine3.19/zts/Dockerfile similarity index 98% rename from 8.3-rc/alpine3.17/zts/Dockerfile rename to 8.3-rc/alpine3.19/zts/Dockerfile index ea5297598..08b1ed31a 100644 --- a/8.3-rc/alpine3.17/zts/Dockerfile +++ b/8.3-rc/alpine3.19/zts/Dockerfile @@ -4,7 +4,7 @@ # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM alpine:3.17 +FROM alpine:3.19 # dependencies required for running "phpize" # these get automatically installed and removed by "docker-php-ext-*" (unless they're already installed) @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.3-rc/alpine3.17/zts/docker-php-entrypoint b/8.3-rc/alpine3.19/zts/docker-php-entrypoint similarity index 100% rename from 8.3-rc/alpine3.17/zts/docker-php-entrypoint rename to 8.3-rc/alpine3.19/zts/docker-php-entrypoint diff --git a/8.3-rc/alpine3.17/zts/docker-php-ext-configure b/8.3-rc/alpine3.19/zts/docker-php-ext-configure similarity index 100% rename from 8.3-rc/alpine3.17/zts/docker-php-ext-configure rename to 8.3-rc/alpine3.19/zts/docker-php-ext-configure diff --git a/8.3-rc/alpine3.17/zts/docker-php-ext-enable b/8.3-rc/alpine3.19/zts/docker-php-ext-enable similarity index 100% rename from 8.3-rc/alpine3.17/zts/docker-php-ext-enable rename to 8.3-rc/alpine3.19/zts/docker-php-ext-enable diff --git a/8.3-rc/alpine3.17/zts/docker-php-ext-install b/8.3-rc/alpine3.19/zts/docker-php-ext-install similarity index 100% rename from 8.3-rc/alpine3.17/zts/docker-php-ext-install rename to 8.3-rc/alpine3.19/zts/docker-php-ext-install diff --git a/8.3-rc/alpine3.17/zts/docker-php-source b/8.3-rc/alpine3.19/zts/docker-php-source similarity index 100% rename from 8.3-rc/alpine3.17/zts/docker-php-source rename to 8.3-rc/alpine3.19/zts/docker-php-source diff --git a/8.3/alpine3.18/cli/Dockerfile b/8.3/alpine3.18/cli/Dockerfile index bd2d512a9..a222ebe85 100644 --- a/8.3/alpine3.18/cli/Dockerfile +++ b/8.3/alpine3.18/cli/Dockerfile @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.3/alpine3.18/fpm/Dockerfile b/8.3/alpine3.18/fpm/Dockerfile index 570216c23..75a13fb3b 100644 --- a/8.3/alpine3.18/fpm/Dockerfile +++ b/8.3/alpine3.18/fpm/Dockerfile @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.3/alpine3.18/zts/Dockerfile b/8.3/alpine3.18/zts/Dockerfile index 048843fe8..0bc93e225 100644 --- a/8.3/alpine3.18/zts/Dockerfile +++ b/8.3/alpine3.18/zts/Dockerfile @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.3/alpine3.17/cli/Dockerfile b/8.3/alpine3.19/cli/Dockerfile similarity index 98% rename from 8.3/alpine3.17/cli/Dockerfile rename to 8.3/alpine3.19/cli/Dockerfile index dacf0a599..34aa4185b 100644 --- a/8.3/alpine3.17/cli/Dockerfile +++ b/8.3/alpine3.19/cli/Dockerfile @@ -4,7 +4,7 @@ # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM alpine:3.17 +FROM alpine:3.19 # dependencies required for running "phpize" # these get automatically installed and removed by "docker-php-ext-*" (unless they're already installed) @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.3/alpine3.17/cli/docker-php-entrypoint b/8.3/alpine3.19/cli/docker-php-entrypoint similarity index 100% rename from 8.3/alpine3.17/cli/docker-php-entrypoint rename to 8.3/alpine3.19/cli/docker-php-entrypoint diff --git a/8.3/alpine3.17/cli/docker-php-ext-configure b/8.3/alpine3.19/cli/docker-php-ext-configure similarity index 100% rename from 8.3/alpine3.17/cli/docker-php-ext-configure rename to 8.3/alpine3.19/cli/docker-php-ext-configure diff --git a/8.3/alpine3.17/cli/docker-php-ext-enable b/8.3/alpine3.19/cli/docker-php-ext-enable similarity index 100% rename from 8.3/alpine3.17/cli/docker-php-ext-enable rename to 8.3/alpine3.19/cli/docker-php-ext-enable diff --git a/8.3/alpine3.17/cli/docker-php-ext-install b/8.3/alpine3.19/cli/docker-php-ext-install similarity index 100% rename from 8.3/alpine3.17/cli/docker-php-ext-install rename to 8.3/alpine3.19/cli/docker-php-ext-install diff --git a/8.3/alpine3.17/cli/docker-php-source b/8.3/alpine3.19/cli/docker-php-source similarity index 100% rename from 8.3/alpine3.17/cli/docker-php-source rename to 8.3/alpine3.19/cli/docker-php-source diff --git a/8.3/alpine3.17/fpm/Dockerfile b/8.3/alpine3.19/fpm/Dockerfile similarity index 99% rename from 8.3/alpine3.17/fpm/Dockerfile rename to 8.3/alpine3.19/fpm/Dockerfile index 6a2e6564d..2ac1593e6 100644 --- a/8.3/alpine3.17/fpm/Dockerfile +++ b/8.3/alpine3.19/fpm/Dockerfile @@ -4,7 +4,7 @@ # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM alpine:3.17 +FROM alpine:3.19 # dependencies required for running "phpize" # these get automatically installed and removed by "docker-php-ext-*" (unless they're already installed) @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.3/alpine3.17/fpm/docker-php-entrypoint b/8.3/alpine3.19/fpm/docker-php-entrypoint similarity index 100% rename from 8.3/alpine3.17/fpm/docker-php-entrypoint rename to 8.3/alpine3.19/fpm/docker-php-entrypoint diff --git a/8.3/alpine3.17/fpm/docker-php-ext-configure b/8.3/alpine3.19/fpm/docker-php-ext-configure similarity index 100% rename from 8.3/alpine3.17/fpm/docker-php-ext-configure rename to 8.3/alpine3.19/fpm/docker-php-ext-configure diff --git a/8.3/alpine3.17/fpm/docker-php-ext-enable b/8.3/alpine3.19/fpm/docker-php-ext-enable similarity index 100% rename from 8.3/alpine3.17/fpm/docker-php-ext-enable rename to 8.3/alpine3.19/fpm/docker-php-ext-enable diff --git a/8.3/alpine3.17/fpm/docker-php-ext-install b/8.3/alpine3.19/fpm/docker-php-ext-install similarity index 100% rename from 8.3/alpine3.17/fpm/docker-php-ext-install rename to 8.3/alpine3.19/fpm/docker-php-ext-install diff --git a/8.3/alpine3.17/fpm/docker-php-source b/8.3/alpine3.19/fpm/docker-php-source similarity index 100% rename from 8.3/alpine3.17/fpm/docker-php-source rename to 8.3/alpine3.19/fpm/docker-php-source diff --git a/8.3/alpine3.17/zts/Dockerfile b/8.3/alpine3.19/zts/Dockerfile similarity index 98% rename from 8.3/alpine3.17/zts/Dockerfile rename to 8.3/alpine3.19/zts/Dockerfile index 3cf8efbe6..c8c774eba 100644 --- a/8.3/alpine3.17/zts/Dockerfile +++ b/8.3/alpine3.19/zts/Dockerfile @@ -4,7 +4,7 @@ # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM alpine:3.17 +FROM alpine:3.19 # dependencies required for running "phpize" # these get automatically installed and removed by "docker-php-ext-*" (unless they're already installed) @@ -23,10 +23,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/8.3/alpine3.17/zts/docker-php-entrypoint b/8.3/alpine3.19/zts/docker-php-entrypoint similarity index 100% rename from 8.3/alpine3.17/zts/docker-php-entrypoint rename to 8.3/alpine3.19/zts/docker-php-entrypoint diff --git a/8.3/alpine3.17/zts/docker-php-ext-configure b/8.3/alpine3.19/zts/docker-php-ext-configure similarity index 100% rename from 8.3/alpine3.17/zts/docker-php-ext-configure rename to 8.3/alpine3.19/zts/docker-php-ext-configure diff --git a/8.3/alpine3.17/zts/docker-php-ext-enable b/8.3/alpine3.19/zts/docker-php-ext-enable similarity index 100% rename from 8.3/alpine3.17/zts/docker-php-ext-enable rename to 8.3/alpine3.19/zts/docker-php-ext-enable diff --git a/8.3/alpine3.17/zts/docker-php-ext-install b/8.3/alpine3.19/zts/docker-php-ext-install similarity index 100% rename from 8.3/alpine3.17/zts/docker-php-ext-install rename to 8.3/alpine3.19/zts/docker-php-ext-install diff --git a/8.3/alpine3.17/zts/docker-php-source b/8.3/alpine3.19/zts/docker-php-source similarity index 100% rename from 8.3/alpine3.17/zts/docker-php-source rename to 8.3/alpine3.19/zts/docker-php-source diff --git a/Dockerfile-linux.template b/Dockerfile-linux.template index 70b140336..dbc3080fe 100644 --- a/Dockerfile-linux.template +++ b/Dockerfile-linux.template @@ -48,10 +48,9 @@ ENV PHPIZE_DEPS \ RUN apk add --no-cache \ ca-certificates \ curl \ + openssl \ tar \ - xz \ -# https://github.com/docker-library/php/issues/494 - openssl + xz # ensure www-data user exists RUN set -eux; \ diff --git a/versions.json b/versions.json index 42d407a96..1e780b42f 100644 --- a/versions.json +++ b/versions.json @@ -12,12 +12,12 @@ "bullseye/apache", "bullseye/fpm", "bullseye/zts", + "alpine3.19/cli", + "alpine3.19/fpm", + "alpine3.19/zts", "alpine3.18/cli", "alpine3.18/fpm", - "alpine3.18/zts", - "alpine3.17/cli", - "alpine3.17/fpm", - "alpine3.17/zts" + "alpine3.18/zts" ], "version": "8.1.26" }, @@ -34,12 +34,12 @@ "bullseye/apache", "bullseye/fpm", "bullseye/zts", + "alpine3.19/cli", + "alpine3.19/fpm", + "alpine3.19/zts", "alpine3.18/cli", "alpine3.18/fpm", - "alpine3.18/zts", - "alpine3.17/cli", - "alpine3.17/fpm", - "alpine3.17/zts" + "alpine3.18/zts" ], "version": "8.1.27RC1" }, @@ -56,12 +56,12 @@ "bullseye/apache", "bullseye/fpm", "bullseye/zts", + "alpine3.19/cli", + "alpine3.19/fpm", + "alpine3.19/zts", "alpine3.18/cli", "alpine3.18/fpm", - "alpine3.18/zts", - "alpine3.17/cli", - "alpine3.17/fpm", - "alpine3.17/zts" + "alpine3.18/zts" ], "version": "8.2.13" }, @@ -78,12 +78,12 @@ "bullseye/apache", "bullseye/fpm", "bullseye/zts", + "alpine3.19/cli", + "alpine3.19/fpm", + "alpine3.19/zts", "alpine3.18/cli", "alpine3.18/fpm", - "alpine3.18/zts", - "alpine3.17/cli", - "alpine3.17/fpm", - "alpine3.17/zts" + "alpine3.18/zts" ], "version": "8.2.14RC1" }, @@ -100,12 +100,12 @@ "bullseye/apache", "bullseye/fpm", "bullseye/zts", + "alpine3.19/cli", + "alpine3.19/fpm", + "alpine3.19/zts", "alpine3.18/cli", "alpine3.18/fpm", - "alpine3.18/zts", - "alpine3.17/cli", - "alpine3.17/fpm", - "alpine3.17/zts" + "alpine3.18/zts" ], "version": "8.3.0" }, @@ -122,12 +122,12 @@ "bullseye/apache", "bullseye/fpm", "bullseye/zts", + "alpine3.19/cli", + "alpine3.19/fpm", + "alpine3.19/zts", "alpine3.18/cli", "alpine3.18/fpm", - "alpine3.18/zts", - "alpine3.17/cli", - "alpine3.17/fpm", - "alpine3.17/zts" + "alpine3.18/zts" ], "version": "8.3.1RC3" } diff --git a/versions.sh b/versions.sh index e14ba106f..3cef7999d 100755 --- a/versions.sh +++ b/versions.sh @@ -87,8 +87,8 @@ for version in "${versions[@]}"; do for suite in \ bookworm \ bullseye \ + alpine3.19 \ alpine3.18 \ - alpine3.17 \ ; do for variant in cli apache fpm zts; do if [[ "$suite" = alpine* ]]; then