From 8613f7b021d081d44b0d1b2bdb04ffd2b7e63f5e Mon Sep 17 00:00:00 2001 From: oanhnn Date: Mon, 28 Oct 2024 05:15:32 +0000 Subject: [PATCH] Update PHP --- 8.2-rc/apache/Dockerfile | 59 ------------------------------------ 8.2-rc/cli-alpine/Dockerfile | 57 ---------------------------------- 8.2-rc/cli/Dockerfile | 59 ------------------------------------ 8.2-rc/fpm-alpine/Dockerfile | 57 ---------------------------------- 8.2-rc/fpm/Dockerfile | 59 ------------------------------------ 8.2-rc/zts-alpine/Dockerfile | 57 ---------------------------------- 8.2-rc/zts/Dockerfile | 59 ------------------------------------ 8.2/apache/Dockerfile | 2 +- 8.2/cli-alpine/Dockerfile | 2 +- 8.2/cli/Dockerfile | 2 +- 8.2/fpm-alpine/Dockerfile | 2 +- 8.2/fpm/Dockerfile | 2 +- 8.2/zts-alpine/Dockerfile | 2 +- 8.2/zts/Dockerfile | 2 +- 8.3-rc/apache/Dockerfile | 59 ------------------------------------ 8.3-rc/cli-alpine/Dockerfile | 57 ---------------------------------- 8.3-rc/cli/Dockerfile | 59 ------------------------------------ 8.3-rc/fpm-alpine/Dockerfile | 57 ---------------------------------- 8.3-rc/fpm/Dockerfile | 59 ------------------------------------ 8.3-rc/zts-alpine/Dockerfile | 57 ---------------------------------- 8.3-rc/zts/Dockerfile | 59 ------------------------------------ 8.3/apache/Dockerfile | 2 +- 8.3/cli-alpine/Dockerfile | 2 +- 8.3/cli/Dockerfile | 2 +- 8.3/fpm-alpine/Dockerfile | 2 +- 8.3/fpm/Dockerfile | 2 +- 8.3/zts-alpine/Dockerfile | 2 +- 8.3/zts/Dockerfile | 2 +- 8.4-rc/apache/Dockerfile | 2 +- 8.4-rc/cli-alpine/Dockerfile | 2 +- 8.4-rc/cli/Dockerfile | 2 +- 8.4-rc/fpm-alpine/Dockerfile | 2 +- 8.4-rc/fpm/Dockerfile | 2 +- 8.4-rc/zts-alpine/Dockerfile | 2 +- 8.4-rc/zts/Dockerfile | 2 +- 35 files changed, 21 insertions(+), 835 deletions(-) delete mode 100644 8.2-rc/apache/Dockerfile delete mode 100644 8.2-rc/cli-alpine/Dockerfile delete mode 100644 8.2-rc/cli/Dockerfile delete mode 100644 8.2-rc/fpm-alpine/Dockerfile delete mode 100644 8.2-rc/fpm/Dockerfile delete mode 100644 8.2-rc/zts-alpine/Dockerfile delete mode 100644 8.2-rc/zts/Dockerfile delete mode 100644 8.3-rc/apache/Dockerfile delete mode 100644 8.3-rc/cli-alpine/Dockerfile delete mode 100644 8.3-rc/cli/Dockerfile delete mode 100644 8.3-rc/fpm-alpine/Dockerfile delete mode 100644 8.3-rc/fpm/Dockerfile delete mode 100644 8.3-rc/zts-alpine/Dockerfile delete mode 100644 8.3-rc/zts/Dockerfile diff --git a/8.2-rc/apache/Dockerfile b/8.2-rc/apache/Dockerfile deleted file mode 100644 index 164c987..0000000 --- a/8.2-rc/apache/Dockerfile +++ /dev/null @@ -1,59 +0,0 @@ -# -# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" -# -# PLEASE DO NOT EDIT IT DIRECTLY. -# -FROM php:8.2.25RC1-apache - -RUN set -eux; \ - \ - savedAptMark="$(apt-mark showmanual)"; \ - apt-get update; \ - apt-get install -y --no-install-recommends \ - libfreetype6-dev \ - libgmp-dev \ - libicu-dev \ - libjpeg62-turbo-dev \ - libpng-dev \ - libpq-dev \ - libzip-dev \ - $PHPIZE_DEPS \ - ; \ - docker-php-ext-configure gd \ - --with-freetype=/usr/include/ \ - --with-jpeg=/usr/include/ \ - ; \ - docker-php-ext-install -j"$(getconf _NPROCESSORS_ONLN)" \ - bcmath \ - gd \ - gmp \ - intl \ - opcache \ - pdo_mysql \ - pdo_pgsql \ - pcntl \ - sockets \ - zip \ - ; \ - \ - pecl update-channels; \ - pecl install \ - redis \ - xdebug \ - ; \ - docker-php-ext-enable redis; \ - rm -rf /tmp/pear ~/.pearrc; \ - apt-mark auto '.*' > /dev/null; \ - [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; \ - find /usr/local -type f -executable -exec ldd '{}' ';' \ - | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print so }' \ - | sort -u \ - | xargs -r dpkg-query --search \ - | cut -d: -f1 \ - | sort -u \ - | xargs -r apt-mark manual \ - ; \ - apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \ - rm -rf /var/lib/apt/lists/*; \ - \ - php --version diff --git a/8.2-rc/cli-alpine/Dockerfile b/8.2-rc/cli-alpine/Dockerfile deleted file mode 100644 index c3c39dd..0000000 --- a/8.2-rc/cli-alpine/Dockerfile +++ /dev/null @@ -1,57 +0,0 @@ -# -# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" -# -# PLEASE DO NOT EDIT IT DIRECTLY. -# -FROM php:8.2.25RC1-cli-alpine - -RUN set -eux; \ - \ - apk add --update --no-cache --virtual .build-deps \ - freetype-dev \ - gmp-dev \ - icu-dev \ - libintl \ - libjpeg-turbo-dev \ - libpng-dev \ - libxml2-dev \ - libzip-dev \ - linux-headers \ - postgresql-dev \ - $PHPIZE_DEPS \ - ; \ - docker-php-ext-configure gd \ - --with-freetype=/usr/include/ \ - --with-jpeg=/usr/include/ \ - ; \ - docker-php-ext-install -j"$(getconf _NPROCESSORS_ONLN)" \ - bcmath \ - gd \ - gmp \ - intl \ - opcache \ - pdo_mysql \ - pdo_pgsql \ - pcntl \ - sockets \ - zip \ - ; \ - \ - pecl update-channels; \ - pecl install \ - redis \ - xdebug \ - ; \ - docker-php-ext-enable redis; \ - rm -rf /tmp/pear ~/.pearrc; \ - \ - runDeps="$( \ - scanelf --needed --nobanner --format '%n#p' --recursive /usr/local \ - | tr ',' '\n' \ - | sort -u \ - | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' \ - )"; \ - apk add --update --no-cache --virtual .run-deps $runDeps; \ - apk del .build-deps; \ - \ - php --version diff --git a/8.2-rc/cli/Dockerfile b/8.2-rc/cli/Dockerfile deleted file mode 100644 index e8416fa..0000000 --- a/8.2-rc/cli/Dockerfile +++ /dev/null @@ -1,59 +0,0 @@ -# -# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" -# -# PLEASE DO NOT EDIT IT DIRECTLY. -# -FROM php:8.2.25RC1-cli - -RUN set -eux; \ - \ - savedAptMark="$(apt-mark showmanual)"; \ - apt-get update; \ - apt-get install -y --no-install-recommends \ - libfreetype6-dev \ - libgmp-dev \ - libicu-dev \ - libjpeg62-turbo-dev \ - libpng-dev \ - libpq-dev \ - libzip-dev \ - $PHPIZE_DEPS \ - ; \ - docker-php-ext-configure gd \ - --with-freetype=/usr/include/ \ - --with-jpeg=/usr/include/ \ - ; \ - docker-php-ext-install -j"$(getconf _NPROCESSORS_ONLN)" \ - bcmath \ - gd \ - gmp \ - intl \ - opcache \ - pdo_mysql \ - pdo_pgsql \ - pcntl \ - sockets \ - zip \ - ; \ - \ - pecl update-channels; \ - pecl install \ - redis \ - xdebug \ - ; \ - docker-php-ext-enable redis; \ - rm -rf /tmp/pear ~/.pearrc; \ - apt-mark auto '.*' > /dev/null; \ - [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; \ - find /usr/local -type f -executable -exec ldd '{}' ';' \ - | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print so }' \ - | sort -u \ - | xargs -r dpkg-query --search \ - | cut -d: -f1 \ - | sort -u \ - | xargs -r apt-mark manual \ - ; \ - apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \ - rm -rf /var/lib/apt/lists/*; \ - \ - php --version diff --git a/8.2-rc/fpm-alpine/Dockerfile b/8.2-rc/fpm-alpine/Dockerfile deleted file mode 100644 index 4bcaf3d..0000000 --- a/8.2-rc/fpm-alpine/Dockerfile +++ /dev/null @@ -1,57 +0,0 @@ -# -# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" -# -# PLEASE DO NOT EDIT IT DIRECTLY. -# -FROM php:8.2.25RC1-fpm-alpine - -RUN set -eux; \ - \ - apk add --update --no-cache --virtual .build-deps \ - freetype-dev \ - gmp-dev \ - icu-dev \ - libintl \ - libjpeg-turbo-dev \ - libpng-dev \ - libxml2-dev \ - libzip-dev \ - linux-headers \ - postgresql-dev \ - $PHPIZE_DEPS \ - ; \ - docker-php-ext-configure gd \ - --with-freetype=/usr/include/ \ - --with-jpeg=/usr/include/ \ - ; \ - docker-php-ext-install -j"$(getconf _NPROCESSORS_ONLN)" \ - bcmath \ - gd \ - gmp \ - intl \ - opcache \ - pdo_mysql \ - pdo_pgsql \ - pcntl \ - sockets \ - zip \ - ; \ - \ - pecl update-channels; \ - pecl install \ - redis \ - xdebug \ - ; \ - docker-php-ext-enable redis; \ - rm -rf /tmp/pear ~/.pearrc; \ - \ - runDeps="$( \ - scanelf --needed --nobanner --format '%n#p' --recursive /usr/local \ - | tr ',' '\n' \ - | sort -u \ - | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' \ - )"; \ - apk add --update --no-cache --virtual .run-deps $runDeps; \ - apk del .build-deps; \ - \ - php --version diff --git a/8.2-rc/fpm/Dockerfile b/8.2-rc/fpm/Dockerfile deleted file mode 100644 index 6dfbd81..0000000 --- a/8.2-rc/fpm/Dockerfile +++ /dev/null @@ -1,59 +0,0 @@ -# -# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" -# -# PLEASE DO NOT EDIT IT DIRECTLY. -# -FROM php:8.2.25RC1-fpm - -RUN set -eux; \ - \ - savedAptMark="$(apt-mark showmanual)"; \ - apt-get update; \ - apt-get install -y --no-install-recommends \ - libfreetype6-dev \ - libgmp-dev \ - libicu-dev \ - libjpeg62-turbo-dev \ - libpng-dev \ - libpq-dev \ - libzip-dev \ - $PHPIZE_DEPS \ - ; \ - docker-php-ext-configure gd \ - --with-freetype=/usr/include/ \ - --with-jpeg=/usr/include/ \ - ; \ - docker-php-ext-install -j"$(getconf _NPROCESSORS_ONLN)" \ - bcmath \ - gd \ - gmp \ - intl \ - opcache \ - pdo_mysql \ - pdo_pgsql \ - pcntl \ - sockets \ - zip \ - ; \ - \ - pecl update-channels; \ - pecl install \ - redis \ - xdebug \ - ; \ - docker-php-ext-enable redis; \ - rm -rf /tmp/pear ~/.pearrc; \ - apt-mark auto '.*' > /dev/null; \ - [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; \ - find /usr/local -type f -executable -exec ldd '{}' ';' \ - | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print so }' \ - | sort -u \ - | xargs -r dpkg-query --search \ - | cut -d: -f1 \ - | sort -u \ - | xargs -r apt-mark manual \ - ; \ - apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \ - rm -rf /var/lib/apt/lists/*; \ - \ - php --version diff --git a/8.2-rc/zts-alpine/Dockerfile b/8.2-rc/zts-alpine/Dockerfile deleted file mode 100644 index 0ebf945..0000000 --- a/8.2-rc/zts-alpine/Dockerfile +++ /dev/null @@ -1,57 +0,0 @@ -# -# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" -# -# PLEASE DO NOT EDIT IT DIRECTLY. -# -FROM php:8.2.25RC1-zts-alpine - -RUN set -eux; \ - \ - apk add --update --no-cache --virtual .build-deps \ - freetype-dev \ - gmp-dev \ - icu-dev \ - libintl \ - libjpeg-turbo-dev \ - libpng-dev \ - libxml2-dev \ - libzip-dev \ - linux-headers \ - postgresql-dev \ - $PHPIZE_DEPS \ - ; \ - docker-php-ext-configure gd \ - --with-freetype=/usr/include/ \ - --with-jpeg=/usr/include/ \ - ; \ - docker-php-ext-install -j"$(getconf _NPROCESSORS_ONLN)" \ - bcmath \ - gd \ - gmp \ - intl \ - opcache \ - pdo_mysql \ - pdo_pgsql \ - pcntl \ - sockets \ - zip \ - ; \ - \ - pecl update-channels; \ - pecl install \ - redis \ - xdebug \ - ; \ - docker-php-ext-enable redis; \ - rm -rf /tmp/pear ~/.pearrc; \ - \ - runDeps="$( \ - scanelf --needed --nobanner --format '%n#p' --recursive /usr/local \ - | tr ',' '\n' \ - | sort -u \ - | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' \ - )"; \ - apk add --update --no-cache --virtual .run-deps $runDeps; \ - apk del .build-deps; \ - \ - php --version diff --git a/8.2-rc/zts/Dockerfile b/8.2-rc/zts/Dockerfile deleted file mode 100644 index d10f16b..0000000 --- a/8.2-rc/zts/Dockerfile +++ /dev/null @@ -1,59 +0,0 @@ -# -# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" -# -# PLEASE DO NOT EDIT IT DIRECTLY. -# -FROM php:8.2.25RC1-zts - -RUN set -eux; \ - \ - savedAptMark="$(apt-mark showmanual)"; \ - apt-get update; \ - apt-get install -y --no-install-recommends \ - libfreetype6-dev \ - libgmp-dev \ - libicu-dev \ - libjpeg62-turbo-dev \ - libpng-dev \ - libpq-dev \ - libzip-dev \ - $PHPIZE_DEPS \ - ; \ - docker-php-ext-configure gd \ - --with-freetype=/usr/include/ \ - --with-jpeg=/usr/include/ \ - ; \ - docker-php-ext-install -j"$(getconf _NPROCESSORS_ONLN)" \ - bcmath \ - gd \ - gmp \ - intl \ - opcache \ - pdo_mysql \ - pdo_pgsql \ - pcntl \ - sockets \ - zip \ - ; \ - \ - pecl update-channels; \ - pecl install \ - redis \ - xdebug \ - ; \ - docker-php-ext-enable redis; \ - rm -rf /tmp/pear ~/.pearrc; \ - apt-mark auto '.*' > /dev/null; \ - [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; \ - find /usr/local -type f -executable -exec ldd '{}' ';' \ - | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print so }' \ - | sort -u \ - | xargs -r dpkg-query --search \ - | cut -d: -f1 \ - | sort -u \ - | xargs -r apt-mark manual \ - ; \ - apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \ - rm -rf /var/lib/apt/lists/*; \ - \ - php --version diff --git a/8.2/apache/Dockerfile b/8.2/apache/Dockerfile index 9e23be8..561457f 100644 --- a/8.2/apache/Dockerfile +++ b/8.2/apache/Dockerfile @@ -3,7 +3,7 @@ # # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM php:8.2.24-apache +FROM php:8.2.25-apache RUN set -eux; \ \ diff --git a/8.2/cli-alpine/Dockerfile b/8.2/cli-alpine/Dockerfile index a46e2fd..6461fae 100644 --- a/8.2/cli-alpine/Dockerfile +++ b/8.2/cli-alpine/Dockerfile @@ -3,7 +3,7 @@ # # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM php:8.2.24-cli-alpine +FROM php:8.2.25-cli-alpine RUN set -eux; \ \ diff --git a/8.2/cli/Dockerfile b/8.2/cli/Dockerfile index b6cdec4..7662d2d 100644 --- a/8.2/cli/Dockerfile +++ b/8.2/cli/Dockerfile @@ -3,7 +3,7 @@ # # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM php:8.2.24-cli +FROM php:8.2.25-cli RUN set -eux; \ \ diff --git a/8.2/fpm-alpine/Dockerfile b/8.2/fpm-alpine/Dockerfile index be406d3..def2522 100644 --- a/8.2/fpm-alpine/Dockerfile +++ b/8.2/fpm-alpine/Dockerfile @@ -3,7 +3,7 @@ # # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM php:8.2.24-fpm-alpine +FROM php:8.2.25-fpm-alpine RUN set -eux; \ \ diff --git a/8.2/fpm/Dockerfile b/8.2/fpm/Dockerfile index 7837f7d..4161093 100644 --- a/8.2/fpm/Dockerfile +++ b/8.2/fpm/Dockerfile @@ -3,7 +3,7 @@ # # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM php:8.2.24-fpm +FROM php:8.2.25-fpm RUN set -eux; \ \ diff --git a/8.2/zts-alpine/Dockerfile b/8.2/zts-alpine/Dockerfile index 029d28a..11aa13f 100644 --- a/8.2/zts-alpine/Dockerfile +++ b/8.2/zts-alpine/Dockerfile @@ -3,7 +3,7 @@ # # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM php:8.2.24-zts-alpine +FROM php:8.2.25-zts-alpine RUN set -eux; \ \ diff --git a/8.2/zts/Dockerfile b/8.2/zts/Dockerfile index 7346293..b64edda 100644 --- a/8.2/zts/Dockerfile +++ b/8.2/zts/Dockerfile @@ -3,7 +3,7 @@ # # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM php:8.2.24-zts +FROM php:8.2.25-zts RUN set -eux; \ \ diff --git a/8.3-rc/apache/Dockerfile b/8.3-rc/apache/Dockerfile deleted file mode 100644 index b60147d..0000000 --- a/8.3-rc/apache/Dockerfile +++ /dev/null @@ -1,59 +0,0 @@ -# -# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" -# -# PLEASE DO NOT EDIT IT DIRECTLY. -# -FROM php:8.3.13RC1-apache - -RUN set -eux; \ - \ - savedAptMark="$(apt-mark showmanual)"; \ - apt-get update; \ - apt-get install -y --no-install-recommends \ - libfreetype6-dev \ - libgmp-dev \ - libicu-dev \ - libjpeg62-turbo-dev \ - libpng-dev \ - libpq-dev \ - libzip-dev \ - $PHPIZE_DEPS \ - ; \ - docker-php-ext-configure gd \ - --with-freetype=/usr/include/ \ - --with-jpeg=/usr/include/ \ - ; \ - docker-php-ext-install -j"$(getconf _NPROCESSORS_ONLN)" \ - bcmath \ - gd \ - gmp \ - intl \ - opcache \ - pdo_mysql \ - pdo_pgsql \ - pcntl \ - sockets \ - zip \ - ; \ - \ - pecl update-channels; \ - pecl install \ - redis \ - xdebug \ - ; \ - docker-php-ext-enable redis; \ - rm -rf /tmp/pear ~/.pearrc; \ - apt-mark auto '.*' > /dev/null; \ - [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; \ - find /usr/local -type f -executable -exec ldd '{}' ';' \ - | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print so }' \ - | sort -u \ - | xargs -r dpkg-query --search \ - | cut -d: -f1 \ - | sort -u \ - | xargs -r apt-mark manual \ - ; \ - apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \ - rm -rf /var/lib/apt/lists/*; \ - \ - php --version diff --git a/8.3-rc/cli-alpine/Dockerfile b/8.3-rc/cli-alpine/Dockerfile deleted file mode 100644 index f7df329..0000000 --- a/8.3-rc/cli-alpine/Dockerfile +++ /dev/null @@ -1,57 +0,0 @@ -# -# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" -# -# PLEASE DO NOT EDIT IT DIRECTLY. -# -FROM php:8.3.13RC1-cli-alpine - -RUN set -eux; \ - \ - apk add --update --no-cache --virtual .build-deps \ - freetype-dev \ - gmp-dev \ - icu-dev \ - libintl \ - libjpeg-turbo-dev \ - libpng-dev \ - libxml2-dev \ - libzip-dev \ - linux-headers \ - postgresql-dev \ - $PHPIZE_DEPS \ - ; \ - docker-php-ext-configure gd \ - --with-freetype=/usr/include/ \ - --with-jpeg=/usr/include/ \ - ; \ - docker-php-ext-install -j"$(getconf _NPROCESSORS_ONLN)" \ - bcmath \ - gd \ - gmp \ - intl \ - opcache \ - pdo_mysql \ - pdo_pgsql \ - pcntl \ - sockets \ - zip \ - ; \ - \ - pecl update-channels; \ - pecl install \ - redis \ - xdebug \ - ; \ - docker-php-ext-enable redis; \ - rm -rf /tmp/pear ~/.pearrc; \ - \ - runDeps="$( \ - scanelf --needed --nobanner --format '%n#p' --recursive /usr/local \ - | tr ',' '\n' \ - | sort -u \ - | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' \ - )"; \ - apk add --update --no-cache --virtual .run-deps $runDeps; \ - apk del .build-deps; \ - \ - php --version diff --git a/8.3-rc/cli/Dockerfile b/8.3-rc/cli/Dockerfile deleted file mode 100644 index cc856c3..0000000 --- a/8.3-rc/cli/Dockerfile +++ /dev/null @@ -1,59 +0,0 @@ -# -# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" -# -# PLEASE DO NOT EDIT IT DIRECTLY. -# -FROM php:8.3.13RC1-cli - -RUN set -eux; \ - \ - savedAptMark="$(apt-mark showmanual)"; \ - apt-get update; \ - apt-get install -y --no-install-recommends \ - libfreetype6-dev \ - libgmp-dev \ - libicu-dev \ - libjpeg62-turbo-dev \ - libpng-dev \ - libpq-dev \ - libzip-dev \ - $PHPIZE_DEPS \ - ; \ - docker-php-ext-configure gd \ - --with-freetype=/usr/include/ \ - --with-jpeg=/usr/include/ \ - ; \ - docker-php-ext-install -j"$(getconf _NPROCESSORS_ONLN)" \ - bcmath \ - gd \ - gmp \ - intl \ - opcache \ - pdo_mysql \ - pdo_pgsql \ - pcntl \ - sockets \ - zip \ - ; \ - \ - pecl update-channels; \ - pecl install \ - redis \ - xdebug \ - ; \ - docker-php-ext-enable redis; \ - rm -rf /tmp/pear ~/.pearrc; \ - apt-mark auto '.*' > /dev/null; \ - [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; \ - find /usr/local -type f -executable -exec ldd '{}' ';' \ - | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print so }' \ - | sort -u \ - | xargs -r dpkg-query --search \ - | cut -d: -f1 \ - | sort -u \ - | xargs -r apt-mark manual \ - ; \ - apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \ - rm -rf /var/lib/apt/lists/*; \ - \ - php --version diff --git a/8.3-rc/fpm-alpine/Dockerfile b/8.3-rc/fpm-alpine/Dockerfile deleted file mode 100644 index ed69b0a..0000000 --- a/8.3-rc/fpm-alpine/Dockerfile +++ /dev/null @@ -1,57 +0,0 @@ -# -# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" -# -# PLEASE DO NOT EDIT IT DIRECTLY. -# -FROM php:8.3.13RC1-fpm-alpine - -RUN set -eux; \ - \ - apk add --update --no-cache --virtual .build-deps \ - freetype-dev \ - gmp-dev \ - icu-dev \ - libintl \ - libjpeg-turbo-dev \ - libpng-dev \ - libxml2-dev \ - libzip-dev \ - linux-headers \ - postgresql-dev \ - $PHPIZE_DEPS \ - ; \ - docker-php-ext-configure gd \ - --with-freetype=/usr/include/ \ - --with-jpeg=/usr/include/ \ - ; \ - docker-php-ext-install -j"$(getconf _NPROCESSORS_ONLN)" \ - bcmath \ - gd \ - gmp \ - intl \ - opcache \ - pdo_mysql \ - pdo_pgsql \ - pcntl \ - sockets \ - zip \ - ; \ - \ - pecl update-channels; \ - pecl install \ - redis \ - xdebug \ - ; \ - docker-php-ext-enable redis; \ - rm -rf /tmp/pear ~/.pearrc; \ - \ - runDeps="$( \ - scanelf --needed --nobanner --format '%n#p' --recursive /usr/local \ - | tr ',' '\n' \ - | sort -u \ - | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' \ - )"; \ - apk add --update --no-cache --virtual .run-deps $runDeps; \ - apk del .build-deps; \ - \ - php --version diff --git a/8.3-rc/fpm/Dockerfile b/8.3-rc/fpm/Dockerfile deleted file mode 100644 index 079c752..0000000 --- a/8.3-rc/fpm/Dockerfile +++ /dev/null @@ -1,59 +0,0 @@ -# -# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" -# -# PLEASE DO NOT EDIT IT DIRECTLY. -# -FROM php:8.3.13RC1-fpm - -RUN set -eux; \ - \ - savedAptMark="$(apt-mark showmanual)"; \ - apt-get update; \ - apt-get install -y --no-install-recommends \ - libfreetype6-dev \ - libgmp-dev \ - libicu-dev \ - libjpeg62-turbo-dev \ - libpng-dev \ - libpq-dev \ - libzip-dev \ - $PHPIZE_DEPS \ - ; \ - docker-php-ext-configure gd \ - --with-freetype=/usr/include/ \ - --with-jpeg=/usr/include/ \ - ; \ - docker-php-ext-install -j"$(getconf _NPROCESSORS_ONLN)" \ - bcmath \ - gd \ - gmp \ - intl \ - opcache \ - pdo_mysql \ - pdo_pgsql \ - pcntl \ - sockets \ - zip \ - ; \ - \ - pecl update-channels; \ - pecl install \ - redis \ - xdebug \ - ; \ - docker-php-ext-enable redis; \ - rm -rf /tmp/pear ~/.pearrc; \ - apt-mark auto '.*' > /dev/null; \ - [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; \ - find /usr/local -type f -executable -exec ldd '{}' ';' \ - | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print so }' \ - | sort -u \ - | xargs -r dpkg-query --search \ - | cut -d: -f1 \ - | sort -u \ - | xargs -r apt-mark manual \ - ; \ - apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \ - rm -rf /var/lib/apt/lists/*; \ - \ - php --version diff --git a/8.3-rc/zts-alpine/Dockerfile b/8.3-rc/zts-alpine/Dockerfile deleted file mode 100644 index 138d0c9..0000000 --- a/8.3-rc/zts-alpine/Dockerfile +++ /dev/null @@ -1,57 +0,0 @@ -# -# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" -# -# PLEASE DO NOT EDIT IT DIRECTLY. -# -FROM php:8.3.13RC1-zts-alpine - -RUN set -eux; \ - \ - apk add --update --no-cache --virtual .build-deps \ - freetype-dev \ - gmp-dev \ - icu-dev \ - libintl \ - libjpeg-turbo-dev \ - libpng-dev \ - libxml2-dev \ - libzip-dev \ - linux-headers \ - postgresql-dev \ - $PHPIZE_DEPS \ - ; \ - docker-php-ext-configure gd \ - --with-freetype=/usr/include/ \ - --with-jpeg=/usr/include/ \ - ; \ - docker-php-ext-install -j"$(getconf _NPROCESSORS_ONLN)" \ - bcmath \ - gd \ - gmp \ - intl \ - opcache \ - pdo_mysql \ - pdo_pgsql \ - pcntl \ - sockets \ - zip \ - ; \ - \ - pecl update-channels; \ - pecl install \ - redis \ - xdebug \ - ; \ - docker-php-ext-enable redis; \ - rm -rf /tmp/pear ~/.pearrc; \ - \ - runDeps="$( \ - scanelf --needed --nobanner --format '%n#p' --recursive /usr/local \ - | tr ',' '\n' \ - | sort -u \ - | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' \ - )"; \ - apk add --update --no-cache --virtual .run-deps $runDeps; \ - apk del .build-deps; \ - \ - php --version diff --git a/8.3-rc/zts/Dockerfile b/8.3-rc/zts/Dockerfile deleted file mode 100644 index e24fd5b..0000000 --- a/8.3-rc/zts/Dockerfile +++ /dev/null @@ -1,59 +0,0 @@ -# -# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" -# -# PLEASE DO NOT EDIT IT DIRECTLY. -# -FROM php:8.3.13RC1-zts - -RUN set -eux; \ - \ - savedAptMark="$(apt-mark showmanual)"; \ - apt-get update; \ - apt-get install -y --no-install-recommends \ - libfreetype6-dev \ - libgmp-dev \ - libicu-dev \ - libjpeg62-turbo-dev \ - libpng-dev \ - libpq-dev \ - libzip-dev \ - $PHPIZE_DEPS \ - ; \ - docker-php-ext-configure gd \ - --with-freetype=/usr/include/ \ - --with-jpeg=/usr/include/ \ - ; \ - docker-php-ext-install -j"$(getconf _NPROCESSORS_ONLN)" \ - bcmath \ - gd \ - gmp \ - intl \ - opcache \ - pdo_mysql \ - pdo_pgsql \ - pcntl \ - sockets \ - zip \ - ; \ - \ - pecl update-channels; \ - pecl install \ - redis \ - xdebug \ - ; \ - docker-php-ext-enable redis; \ - rm -rf /tmp/pear ~/.pearrc; \ - apt-mark auto '.*' > /dev/null; \ - [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; \ - find /usr/local -type f -executable -exec ldd '{}' ';' \ - | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print so }' \ - | sort -u \ - | xargs -r dpkg-query --search \ - | cut -d: -f1 \ - | sort -u \ - | xargs -r apt-mark manual \ - ; \ - apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \ - rm -rf /var/lib/apt/lists/*; \ - \ - php --version diff --git a/8.3/apache/Dockerfile b/8.3/apache/Dockerfile index 162adef..f2c1b0e 100644 --- a/8.3/apache/Dockerfile +++ b/8.3/apache/Dockerfile @@ -3,7 +3,7 @@ # # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM php:8.3.12-apache +FROM php:8.3.13-apache RUN set -eux; \ \ diff --git a/8.3/cli-alpine/Dockerfile b/8.3/cli-alpine/Dockerfile index d8cf50e..b1e6759 100644 --- a/8.3/cli-alpine/Dockerfile +++ b/8.3/cli-alpine/Dockerfile @@ -3,7 +3,7 @@ # # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM php:8.3.12-cli-alpine +FROM php:8.3.13-cli-alpine RUN set -eux; \ \ diff --git a/8.3/cli/Dockerfile b/8.3/cli/Dockerfile index 243d1c6..998b736 100644 --- a/8.3/cli/Dockerfile +++ b/8.3/cli/Dockerfile @@ -3,7 +3,7 @@ # # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM php:8.3.12-cli +FROM php:8.3.13-cli RUN set -eux; \ \ diff --git a/8.3/fpm-alpine/Dockerfile b/8.3/fpm-alpine/Dockerfile index cf7ead0..e5aa2e4 100644 --- a/8.3/fpm-alpine/Dockerfile +++ b/8.3/fpm-alpine/Dockerfile @@ -3,7 +3,7 @@ # # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM php:8.3.12-fpm-alpine +FROM php:8.3.13-fpm-alpine RUN set -eux; \ \ diff --git a/8.3/fpm/Dockerfile b/8.3/fpm/Dockerfile index cfc7176..cfdcf5a 100644 --- a/8.3/fpm/Dockerfile +++ b/8.3/fpm/Dockerfile @@ -3,7 +3,7 @@ # # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM php:8.3.12-fpm +FROM php:8.3.13-fpm RUN set -eux; \ \ diff --git a/8.3/zts-alpine/Dockerfile b/8.3/zts-alpine/Dockerfile index d7e3db3..1616976 100644 --- a/8.3/zts-alpine/Dockerfile +++ b/8.3/zts-alpine/Dockerfile @@ -3,7 +3,7 @@ # # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM php:8.3.12-zts-alpine +FROM php:8.3.13-zts-alpine RUN set -eux; \ \ diff --git a/8.3/zts/Dockerfile b/8.3/zts/Dockerfile index 1c29f15..2605363 100644 --- a/8.3/zts/Dockerfile +++ b/8.3/zts/Dockerfile @@ -3,7 +3,7 @@ # # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM php:8.3.12-zts +FROM php:8.3.13-zts RUN set -eux; \ \ diff --git a/8.4-rc/apache/Dockerfile b/8.4-rc/apache/Dockerfile index 9046736..3ff8f09 100644 --- a/8.4-rc/apache/Dockerfile +++ b/8.4-rc/apache/Dockerfile @@ -3,7 +3,7 @@ # # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM php:8.4.0RC2-apache +FROM php:8.4.0RC3-apache RUN set -eux; \ \ diff --git a/8.4-rc/cli-alpine/Dockerfile b/8.4-rc/cli-alpine/Dockerfile index 841fb40..9faa2e3 100644 --- a/8.4-rc/cli-alpine/Dockerfile +++ b/8.4-rc/cli-alpine/Dockerfile @@ -3,7 +3,7 @@ # # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM php:8.4.0RC2-cli-alpine +FROM php:8.4.0RC3-cli-alpine RUN set -eux; \ \ diff --git a/8.4-rc/cli/Dockerfile b/8.4-rc/cli/Dockerfile index 42e409e..5464172 100644 --- a/8.4-rc/cli/Dockerfile +++ b/8.4-rc/cli/Dockerfile @@ -3,7 +3,7 @@ # # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM php:8.4.0RC2-cli +FROM php:8.4.0RC3-cli RUN set -eux; \ \ diff --git a/8.4-rc/fpm-alpine/Dockerfile b/8.4-rc/fpm-alpine/Dockerfile index c1dd719..6db14ac 100644 --- a/8.4-rc/fpm-alpine/Dockerfile +++ b/8.4-rc/fpm-alpine/Dockerfile @@ -3,7 +3,7 @@ # # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM php:8.4.0RC2-fpm-alpine +FROM php:8.4.0RC3-fpm-alpine RUN set -eux; \ \ diff --git a/8.4-rc/fpm/Dockerfile b/8.4-rc/fpm/Dockerfile index 4629f29..1f3bc68 100644 --- a/8.4-rc/fpm/Dockerfile +++ b/8.4-rc/fpm/Dockerfile @@ -3,7 +3,7 @@ # # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM php:8.4.0RC2-fpm +FROM php:8.4.0RC3-fpm RUN set -eux; \ \ diff --git a/8.4-rc/zts-alpine/Dockerfile b/8.4-rc/zts-alpine/Dockerfile index d6d86c7..5f5505b 100644 --- a/8.4-rc/zts-alpine/Dockerfile +++ b/8.4-rc/zts-alpine/Dockerfile @@ -3,7 +3,7 @@ # # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM php:8.4.0RC2-zts-alpine +FROM php:8.4.0RC3-zts-alpine RUN set -eux; \ \ diff --git a/8.4-rc/zts/Dockerfile b/8.4-rc/zts/Dockerfile index 17e7cbd..fe025fc 100644 --- a/8.4-rc/zts/Dockerfile +++ b/8.4-rc/zts/Dockerfile @@ -3,7 +3,7 @@ # # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM php:8.4.0RC2-zts +FROM php:8.4.0RC3-zts RUN set -eux; \ \