diff --git a/8.1-rc/apache/Dockerfile b/8.1-rc/apache/Dockerfile deleted file mode 100644 index abeccad..0000000 --- a/8.1-rc/apache/Dockerfile +++ /dev/null @@ -1,58 +0,0 @@ -# -# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" -# -# PLEASE DO NOT EDIT IT DIRECTLY. -# -FROM php:8.1.27RC1-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; \ - apt-mark manual $savedAptMark; \ - find /usr/local -type f -executable -exec ldd '{}' ';' \ - | awk '/=>/ { print $(NF-1) }' \ - | 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; \ - \ - php --version diff --git a/8.1-rc/cli-alpine/Dockerfile b/8.1-rc/cli-alpine/Dockerfile deleted file mode 100644 index 9cd4fac..0000000 --- a/8.1-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.1.27RC1-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.1-rc/cli/Dockerfile b/8.1-rc/cli/Dockerfile deleted file mode 100644 index 1fb3430..0000000 --- a/8.1-rc/cli/Dockerfile +++ /dev/null @@ -1,58 +0,0 @@ -# -# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" -# -# PLEASE DO NOT EDIT IT DIRECTLY. -# -FROM php:8.1.27RC1-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; \ - apt-mark manual $savedAptMark; \ - find /usr/local -type f -executable -exec ldd '{}' ';' \ - | awk '/=>/ { print $(NF-1) }' \ - | 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; \ - \ - php --version diff --git a/8.1-rc/fpm-alpine/Dockerfile b/8.1-rc/fpm-alpine/Dockerfile deleted file mode 100644 index 71e4025..0000000 --- a/8.1-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.1.27RC1-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.1-rc/fpm/Dockerfile b/8.1-rc/fpm/Dockerfile deleted file mode 100644 index 7c77a9f..0000000 --- a/8.1-rc/fpm/Dockerfile +++ /dev/null @@ -1,58 +0,0 @@ -# -# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" -# -# PLEASE DO NOT EDIT IT DIRECTLY. -# -FROM php:8.1.27RC1-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; \ - apt-mark manual $savedAptMark; \ - find /usr/local -type f -executable -exec ldd '{}' ';' \ - | awk '/=>/ { print $(NF-1) }' \ - | 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; \ - \ - php --version diff --git a/8.1-rc/zts-alpine/Dockerfile b/8.1-rc/zts-alpine/Dockerfile deleted file mode 100644 index 2f7680d..0000000 --- a/8.1-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.1.27RC1-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.1-rc/zts/Dockerfile b/8.1-rc/zts/Dockerfile deleted file mode 100644 index da94a44..0000000 --- a/8.1-rc/zts/Dockerfile +++ /dev/null @@ -1,58 +0,0 @@ -# -# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" -# -# PLEASE DO NOT EDIT IT DIRECTLY. -# -FROM php:8.1.27RC1-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; \ - apt-mark manual $savedAptMark; \ - find /usr/local -type f -executable -exec ldd '{}' ';' \ - | awk '/=>/ { print $(NF-1) }' \ - | 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; \ - \ - php --version diff --git a/8.1/apache/Dockerfile b/8.1/apache/Dockerfile index 6dfdbf9..3f0650d 100644 --- a/8.1/apache/Dockerfile +++ b/8.1/apache/Dockerfile @@ -3,7 +3,7 @@ # # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM php:8.1.26-apache +FROM php:8.1.27-apache RUN set -eux; \ \ diff --git a/8.1/cli-alpine/Dockerfile b/8.1/cli-alpine/Dockerfile index ba456d9..10f5863 100644 --- a/8.1/cli-alpine/Dockerfile +++ b/8.1/cli-alpine/Dockerfile @@ -3,7 +3,7 @@ # # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM php:8.1.26-cli-alpine +FROM php:8.1.27-cli-alpine RUN set -eux; \ \ diff --git a/8.1/cli/Dockerfile b/8.1/cli/Dockerfile index 0dd25e3..4fbf98f 100644 --- a/8.1/cli/Dockerfile +++ b/8.1/cli/Dockerfile @@ -3,7 +3,7 @@ # # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM php:8.1.26-cli +FROM php:8.1.27-cli RUN set -eux; \ \ diff --git a/8.1/fpm-alpine/Dockerfile b/8.1/fpm-alpine/Dockerfile index 8deb9d5..066c62f 100644 --- a/8.1/fpm-alpine/Dockerfile +++ b/8.1/fpm-alpine/Dockerfile @@ -3,7 +3,7 @@ # # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM php:8.1.26-fpm-alpine +FROM php:8.1.27-fpm-alpine RUN set -eux; \ \ diff --git a/8.1/fpm/Dockerfile b/8.1/fpm/Dockerfile index 99e1916..981040c 100644 --- a/8.1/fpm/Dockerfile +++ b/8.1/fpm/Dockerfile @@ -3,7 +3,7 @@ # # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM php:8.1.26-fpm +FROM php:8.1.27-fpm RUN set -eux; \ \ diff --git a/8.1/zts-alpine/Dockerfile b/8.1/zts-alpine/Dockerfile index b40224f..6937ef8 100644 --- a/8.1/zts-alpine/Dockerfile +++ b/8.1/zts-alpine/Dockerfile @@ -3,7 +3,7 @@ # # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM php:8.1.26-zts-alpine +FROM php:8.1.27-zts-alpine RUN set -eux; \ \ diff --git a/8.1/zts/Dockerfile b/8.1/zts/Dockerfile index 614ce4f..1f22cd0 100644 --- a/8.1/zts/Dockerfile +++ b/8.1/zts/Dockerfile @@ -3,7 +3,7 @@ # # PLEASE DO NOT EDIT IT DIRECTLY. # -FROM php:8.1.26-zts +FROM php:8.1.27-zts RUN set -eux; \ \ diff --git a/8.2-rc/apache/Dockerfile b/8.2-rc/apache/Dockerfile deleted file mode 100644 index 20f5bd0..0000000 --- a/8.2-rc/apache/Dockerfile +++ /dev/null @@ -1,58 +0,0 @@ -# -# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" -# -# PLEASE DO NOT EDIT IT DIRECTLY. -# -FROM php:8.2.14RC1-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; \ - apt-mark manual $savedAptMark; \ - find /usr/local -type f -executable -exec ldd '{}' ';' \ - | awk '/=>/ { print $(NF-1) }' \ - | 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; \ - \ - php --version diff --git a/8.2-rc/cli-alpine/Dockerfile b/8.2-rc/cli-alpine/Dockerfile deleted file mode 100644 index 72dea64..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.14RC1-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 22f481f..0000000 --- a/8.2-rc/cli/Dockerfile +++ /dev/null @@ -1,58 +0,0 @@ -# -# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" -# -# PLEASE DO NOT EDIT IT DIRECTLY. -# -FROM php:8.2.14RC1-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; \ - apt-mark manual $savedAptMark; \ - find /usr/local -type f -executable -exec ldd '{}' ';' \ - | awk '/=>/ { print $(NF-1) }' \ - | 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; \ - \ - php --version diff --git a/8.2-rc/fpm-alpine/Dockerfile b/8.2-rc/fpm-alpine/Dockerfile deleted file mode 100644 index 4e8dd22..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.14RC1-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 8107223..0000000 --- a/8.2-rc/fpm/Dockerfile +++ /dev/null @@ -1,58 +0,0 @@ -# -# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" -# -# PLEASE DO NOT EDIT IT DIRECTLY. -# -FROM php:8.2.14RC1-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; \ - apt-mark manual $savedAptMark; \ - find /usr/local -type f -executable -exec ldd '{}' ';' \ - | awk '/=>/ { print $(NF-1) }' \ - | 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; \ - \ - php --version diff --git a/8.2-rc/zts-alpine/Dockerfile b/8.2-rc/zts-alpine/Dockerfile deleted file mode 100644 index 2cecda1..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.14RC1-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 cac337c..0000000 --- a/8.2-rc/zts/Dockerfile +++ /dev/null @@ -1,58 +0,0 @@ -# -# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" -# -# PLEASE DO NOT EDIT IT DIRECTLY. -# -FROM php:8.2.14RC1-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; \ - apt-mark manual $savedAptMark; \ - find /usr/local -type f -executable -exec ldd '{}' ';' \ - | awk '/=>/ { print $(NF-1) }' \ - | 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; \ - \ - php --version diff --git a/8.2/apache/Dockerfile b/8.2/apache/Dockerfile index 6c82a6e..b57a144 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.13-apache +FROM php:8.2.14-apache RUN set -eux; \ \ diff --git a/8.2/cli-alpine/Dockerfile b/8.2/cli-alpine/Dockerfile index 5064e1d..5714216 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.13-cli-alpine +FROM php:8.2.14-cli-alpine RUN set -eux; \ \ diff --git a/8.2/cli/Dockerfile b/8.2/cli/Dockerfile index 6208d1f..7e38bc6 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.13-cli +FROM php:8.2.14-cli RUN set -eux; \ \ diff --git a/8.2/fpm-alpine/Dockerfile b/8.2/fpm-alpine/Dockerfile index 1295975..0d36d2f 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.13-fpm-alpine +FROM php:8.2.14-fpm-alpine RUN set -eux; \ \ diff --git a/8.2/fpm/Dockerfile b/8.2/fpm/Dockerfile index f2eacde..b731869 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.13-fpm +FROM php:8.2.14-fpm RUN set -eux; \ \ diff --git a/8.2/zts-alpine/Dockerfile b/8.2/zts-alpine/Dockerfile index 9f8f211..b86a8b6 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.13-zts-alpine +FROM php:8.2.14-zts-alpine RUN set -eux; \ \ diff --git a/8.2/zts/Dockerfile b/8.2/zts/Dockerfile index 6244f98..7987c20 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.13-zts +FROM php:8.2.14-zts RUN set -eux; \ \ diff --git a/8.3-rc/apache/Dockerfile b/8.3-rc/apache/Dockerfile deleted file mode 100644 index fdae06b..0000000 --- a/8.3-rc/apache/Dockerfile +++ /dev/null @@ -1,58 +0,0 @@ -# -# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" -# -# PLEASE DO NOT EDIT IT DIRECTLY. -# -FROM php:8.3.1RC3-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; \ - apt-mark manual $savedAptMark; \ - find /usr/local -type f -executable -exec ldd '{}' ';' \ - | awk '/=>/ { print $(NF-1) }' \ - | 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; \ - \ - php --version diff --git a/8.3-rc/cli-alpine/Dockerfile b/8.3-rc/cli-alpine/Dockerfile deleted file mode 100644 index 32c5a32..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.1RC3-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 c8096ae..0000000 --- a/8.3-rc/cli/Dockerfile +++ /dev/null @@ -1,58 +0,0 @@ -# -# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" -# -# PLEASE DO NOT EDIT IT DIRECTLY. -# -FROM php:8.3.1RC3-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; \ - apt-mark manual $savedAptMark; \ - find /usr/local -type f -executable -exec ldd '{}' ';' \ - | awk '/=>/ { print $(NF-1) }' \ - | 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; \ - \ - php --version diff --git a/8.3-rc/fpm-alpine/Dockerfile b/8.3-rc/fpm-alpine/Dockerfile deleted file mode 100644 index 83cae08..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.1RC3-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 d2b3091..0000000 --- a/8.3-rc/fpm/Dockerfile +++ /dev/null @@ -1,58 +0,0 @@ -# -# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" -# -# PLEASE DO NOT EDIT IT DIRECTLY. -# -FROM php:8.3.1RC3-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; \ - apt-mark manual $savedAptMark; \ - find /usr/local -type f -executable -exec ldd '{}' ';' \ - | awk '/=>/ { print $(NF-1) }' \ - | 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; \ - \ - php --version diff --git a/8.3-rc/zts-alpine/Dockerfile b/8.3-rc/zts-alpine/Dockerfile deleted file mode 100644 index f4e8cd3..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.1RC3-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 23ac3ce..0000000 --- a/8.3-rc/zts/Dockerfile +++ /dev/null @@ -1,58 +0,0 @@ -# -# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" -# -# PLEASE DO NOT EDIT IT DIRECTLY. -# -FROM php:8.3.1RC3-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; \ - apt-mark manual $savedAptMark; \ - find /usr/local -type f -executable -exec ldd '{}' ';' \ - | awk '/=>/ { print $(NF-1) }' \ - | 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; \ - \ - php --version diff --git a/8.3/apache/Dockerfile b/8.3/apache/Dockerfile index 1a25aa8..ea2ad94 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.0-apache +FROM php:8.3.1-apache RUN set -eux; \ \ diff --git a/8.3/cli-alpine/Dockerfile b/8.3/cli-alpine/Dockerfile index 1011b14..317b3e1 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.0-cli-alpine +FROM php:8.3.1-cli-alpine RUN set -eux; \ \ diff --git a/8.3/cli/Dockerfile b/8.3/cli/Dockerfile index 55c6fdf..56222a8 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.0-cli +FROM php:8.3.1-cli RUN set -eux; \ \ diff --git a/8.3/fpm-alpine/Dockerfile b/8.3/fpm-alpine/Dockerfile index 09f19c6..6e22b77 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.0-fpm-alpine +FROM php:8.3.1-fpm-alpine RUN set -eux; \ \ diff --git a/8.3/fpm/Dockerfile b/8.3/fpm/Dockerfile index eca5fb5..b3d72cc 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.0-fpm +FROM php:8.3.1-fpm RUN set -eux; \ \ diff --git a/8.3/zts-alpine/Dockerfile b/8.3/zts-alpine/Dockerfile index 2d8280e..0137899 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.0-zts-alpine +FROM php:8.3.1-zts-alpine RUN set -eux; \ \ diff --git a/8.3/zts/Dockerfile b/8.3/zts/Dockerfile index 5096e12..987ec96 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.0-zts +FROM php:8.3.1-zts RUN set -eux; \ \