From 840e2801235b5a3d35febe3f37b6e665f3ceca6c Mon Sep 17 00:00:00 2001 From: Bob Olde Hampsink Date: Thu, 2 Feb 2023 08:22:53 +0100 Subject: [PATCH 01/12] PHP 8.2 --- Dockerfile | 14 +++++++------- README.md | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index 56633fd..e900233 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Which versions? -ARG PHP_VERSION=8.1.14 +ARG PHP_VERSION=8.2.1 ARG REDIS_EXT_VERSION=5.3.7 ARG IMAGICK_EXT_VERSION=3.7.0 ARG PCOV_EXT_VERSION=1.0.11 @@ -33,9 +33,9 @@ RUN curl --silent --location https://lang-php.s3.us-east-1.amazonaws.com/dist-he # Install PHP RUN curl --silent --location https://lang-php.s3.us-east-1.amazonaws.com/dist-heroku-22-stable/php-$PHP_VERSION.tar.gz | tar xz -C /app/.heroku/php -RUN curl --silent --location https://lang-php.s3.us-east-1.amazonaws.com/dist-heroku-22-stable/extensions/no-debug-non-zts-20210902/redis-$REDIS_EXT_VERSION.tar.gz | tar xz -C /app/.heroku/php -RUN curl --silent --location https://lang-php.s3.us-east-1.amazonaws.com/dist-heroku-22-stable/extensions/no-debug-non-zts-20210902/imagick-$IMAGICK_EXT_VERSION.tar.gz | tar xz -C /app/.heroku/php -RUN curl --silent --location https://lang-php.s3.us-east-1.amazonaws.com/dist-heroku-22-stable/extensions/no-debug-non-zts-20210902/pcov-$PCOV_EXT_VERSION.tar.gz | tar xz -C /app/.heroku/php +RUN curl --silent --location https://lang-php.s3.us-east-1.amazonaws.com/dist-heroku-22-stable/extensions/no-debug-non-zts-20220829/redis-$REDIS_EXT_VERSION.tar.gz | tar xz -C /app/.heroku/php +RUN curl --silent --location https://lang-php.s3.us-east-1.amazonaws.com/dist-heroku-22-stable/extensions/no-debug-non-zts-20220829/imagick-$IMAGICK_EXT_VERSION.tar.gz | tar xz -C /app/.heroku/php +RUN curl --silent --location https://lang-php.s3.us-east-1.amazonaws.com/dist-heroku-22-stable/extensions/no-debug-non-zts-20220829/pcov-$PCOV_EXT_VERSION.tar.gz | tar xz -C /app/.heroku/php # Install Composer RUN curl --silent --location https://lang-php.s3.us-east-1.amazonaws.com/dist-heroku-22-stable/composer-$COMPOSER_VERSION.tar.gz | tar xz -C /app/.heroku/php @@ -67,9 +67,9 @@ RUN curl --silent --location https://robuust-heroku-php.s3.eu-west-1.amazonaws.c # Install PHP RUN curl --silent --location https://robuust-heroku-php.s3.eu-west-1.amazonaws.com/dist-heroku-22-develop/php-$PHP_VERSION.tar.gz | tar xz -C /app/.heroku/php -RUN curl --silent --location https://robuust-heroku-php.s3.eu-west-1.amazonaws.com/dist-heroku-22-develop/extensions/no-debug-non-zts-20210902/redis-$REDIS_EXT_VERSION.tar.gz | tar xz -C /app/.heroku/php -RUN curl --silent --location https://robuust-heroku-php.s3.eu-west-1.amazonaws.com/dist-heroku-22-develop/extensions/no-debug-non-zts-20210902/imagick-$IMAGICK_EXT_VERSION.tar.gz | tar xz -C /app/.heroku/php -RUN curl --silent --location https://robuust-heroku-php.s3.eu-west-1.amazonaws.com/dist-heroku-22-develop/extensions/no-debug-non-zts-20210902/pcov-$PCOV_EXT_VERSION.tar.gz | tar xz -C /app/.heroku/php +RUN curl --silent --location https://robuust-heroku-php.s3.eu-west-1.amazonaws.com/dist-heroku-22-develop/extensions/no-debug-non-zts-20220829/redis-$REDIS_EXT_VERSION.tar.gz | tar xz -C /app/.heroku/php +RUN curl --silent --location https://robuust-heroku-php.s3.eu-west-1.amazonaws.com/dist-heroku-22-develop/extensions/no-debug-non-zts-20220829/imagick-$IMAGICK_EXT_VERSION.tar.gz | tar xz -C /app/.heroku/php +RUN curl --silent --location https://robuust-heroku-php.s3.eu-west-1.amazonaws.com/dist-heroku-22-develop/extensions/no-debug-non-zts-20220829/pcov-$PCOV_EXT_VERSION.tar.gz | tar xz -C /app/.heroku/php # Install Composer RUN curl --silent --location https://robuust-heroku-php.s3.eu-west-1.amazonaws.com/dist-heroku-22-develop/composer-$COMPOSER_VERSION.tar.gz | tar xz -C /app/.heroku/php diff --git a/README.md b/README.md index ae4d005..961c61e 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Usage: `FROM ghcr.io/robuust/heroku-php` * Heroku 22 * Apache * Nginx -* PHP 8.1.x with Redis, Imagick and PCov +* PHP 8.2.x with Redis, Imagick and PCov * Composer 2 * Node 18.x * Yarn From 7b1e95a93030cab97cc71ca69e2f550428ea1901 Mon Sep 17 00:00:00 2001 From: Bob Olde Hampsink Date: Fri, 8 Dec 2023 15:23:35 +0100 Subject: [PATCH 02/12] PHP 8.3 --- Dockerfile | 14 +++++++------- README.md | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index 043e234..083f7de 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Which versions? -ARG PHP_VERSION=8.2.13 +ARG PHP_VERSION=8.3.0 ARG REDIS_EXT_VERSION=6.0.2 ARG IMAGICK_EXT_VERSION=3.7.0 ARG PCOV_EXT_VERSION=1.0.11 @@ -33,9 +33,9 @@ RUN curl --silent --location https://lang-php.s3.us-east-1.amazonaws.com/dist-he # Install PHP RUN curl --silent --location https://lang-php.s3.us-east-1.amazonaws.com/dist-heroku-22-stable/php-$PHP_VERSION.tar.gz | tar xz -C /app/.heroku/php -RUN curl --silent --location https://lang-php.s3.us-east-1.amazonaws.com/dist-heroku-22-stable/extensions/no-debug-non-zts-20220829/redis-$REDIS_EXT_VERSION.tar.gz | tar xz -C /app/.heroku/php -RUN curl --silent --location https://lang-php.s3.us-east-1.amazonaws.com/dist-heroku-22-stable/extensions/no-debug-non-zts-20220829/imagick-$IMAGICK_EXT_VERSION.tar.gz | tar xz -C /app/.heroku/php -RUN curl --silent --location https://lang-php.s3.us-east-1.amazonaws.com/dist-heroku-22-stable/extensions/no-debug-non-zts-20220829/pcov-$PCOV_EXT_VERSION.tar.gz | tar xz -C /app/.heroku/php +RUN curl --silent --location https://lang-php.s3.us-east-1.amazonaws.com/dist-heroku-22-stable/extensions/no-debug-non-zts-20230831/redis-$REDIS_EXT_VERSION.tar.gz | tar xz -C /app/.heroku/php +RUN curl --silent --location https://lang-php.s3.us-east-1.amazonaws.com/dist-heroku-22-stable/extensions/no-debug-non-zts-20230831/imagick-$IMAGICK_EXT_VERSION.tar.gz | tar xz -C /app/.heroku/php +RUN curl --silent --location https://lang-php.s3.us-east-1.amazonaws.com/dist-heroku-22-stable/extensions/no-debug-non-zts-20230831/pcov-$PCOV_EXT_VERSION.tar.gz | tar xz -C /app/.heroku/php # Install Composer RUN curl --silent --location https://lang-php.s3.us-east-1.amazonaws.com/dist-heroku-22-stable/composer-$COMPOSER_VERSION.tar.gz | tar xz -C /app/.heroku/php @@ -67,9 +67,9 @@ RUN curl --silent --location https://robuust-heroku-php.s3.eu-west-1.amazonaws.c # Install PHP RUN curl --silent --location https://robuust-heroku-php.s3.eu-west-1.amazonaws.com/dist-heroku-22-develop/php-$PHP_VERSION.tar.gz | tar xz -C /app/.heroku/php -RUN curl --silent --location https://robuust-heroku-php.s3.eu-west-1.amazonaws.com/dist-heroku-22-develop/extensions/no-debug-non-zts-20220829/redis-$REDIS_EXT_VERSION.tar.gz | tar xz -C /app/.heroku/php -RUN curl --silent --location https://robuust-heroku-php.s3.eu-west-1.amazonaws.com/dist-heroku-22-develop/extensions/no-debug-non-zts-20220829/imagick-$IMAGICK_EXT_VERSION.tar.gz | tar xz -C /app/.heroku/php -RUN curl --silent --location https://robuust-heroku-php.s3.eu-west-1.amazonaws.com/dist-heroku-22-develop/extensions/no-debug-non-zts-20220829/pcov-$PCOV_EXT_VERSION.tar.gz | tar xz -C /app/.heroku/php +RUN curl --silent --location https://robuust-heroku-php.s3.eu-west-1.amazonaws.com/dist-heroku-22-develop/extensions/no-debug-non-zts-20230831/redis-$REDIS_EXT_VERSION.tar.gz | tar xz -C /app/.heroku/php +RUN curl --silent --location https://robuust-heroku-php.s3.eu-west-1.amazonaws.com/dist-heroku-22-develop/extensions/no-debug-non-zts-20230831/imagick-$IMAGICK_EXT_VERSION.tar.gz | tar xz -C /app/.heroku/php +RUN curl --silent --location https://robuust-heroku-php.s3.eu-west-1.amazonaws.com/dist-heroku-22-develop/extensions/no-debug-non-zts-20230831/pcov-$PCOV_EXT_VERSION.tar.gz | tar xz -C /app/.heroku/php # Install Composer RUN curl --silent --location https://robuust-heroku-php.s3.eu-west-1.amazonaws.com/dist-heroku-22-develop/composer-$COMPOSER_VERSION.tar.gz | tar xz -C /app/.heroku/php diff --git a/README.md b/README.md index a040b9a..2342f0a 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Usage: `FROM ghcr.io/robuust/heroku-php` * Heroku 22 * Apache * Nginx -* PHP 8.2.x with Redis, Imagick and PCov +* PHP 8.3.x with Redis, Imagick and PCov * Composer 2 * Node 20.x * Yarn From e4263c2e7e1ad691be52be56828dbf73c3052af6 Mon Sep 17 00:00:00 2001 From: Bob Olde Hampsink Date: Fri, 26 Jan 2024 20:30:18 +0100 Subject: [PATCH 03/12] Updated PHP --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d58975f..c1fe447 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Which versions? -ARG PHP_VERSION=8.2.14 +ARG PHP_VERSION=8.2.15 ARG REDIS_EXT_VERSION=6.0.2 ARG IMAGICK_EXT_VERSION=3.7.0 ARG PCOV_EXT_VERSION=1.0.11 From b21b0b32f6b3111141f4749870b8aa35fe6e4786 Mon Sep 17 00:00:00 2001 From: Bob Olde Hampsink Date: Fri, 26 Jan 2024 20:30:53 +0100 Subject: [PATCH 04/12] Updated PHP --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 557bc7e..8933d3f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Which versions? -ARG PHP_VERSION=8.3.1 +ARG PHP_VERSION=8.3.2 ARG REDIS_EXT_VERSION=6.0.2 ARG IMAGICK_EXT_VERSION=3.7.0 ARG PCOV_EXT_VERSION=1.0.11 From 7e4bc2370311bc4ae9197c074564b9cb5bd45acf Mon Sep 17 00:00:00 2001 From: Bob Olde Hampsink Date: Tue, 5 Mar 2024 08:18:52 +0100 Subject: [PATCH 05/12] Updated PHP --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b0d09dc..c1fe003 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Which versions? -ARG PHP_VERSION=8.2.15 +ARG PHP_VERSION=8.2.16 ARG REDIS_EXT_VERSION=6.0.2 ARG IMAGICK_EXT_VERSION=3.7.0 ARG PCOV_EXT_VERSION=1.0.11 From cb53383a454a434560f8f58ac984cb48550abaf5 Mon Sep 17 00:00:00 2001 From: Bob Olde Hampsink Date: Mon, 8 Apr 2024 14:36:28 +0200 Subject: [PATCH 06/12] Bump PHP --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 817716b..9804716 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Which versions? -ARG PHP_VERSION=8.2.16 +ARG PHP_VERSION=8.2.17 ARG REDIS_EXT_VERSION=6.0.2 ARG IMAGICK_EXT_VERSION=3.7.0 ARG PCOV_EXT_VERSION=1.0.11 From 90164b30a791100f57ab143b59cf04b4118b10fa Mon Sep 17 00:00:00 2001 From: Bob Olde Hampsink Date: Mon, 22 Apr 2024 08:41:29 +0200 Subject: [PATCH 07/12] Bump PHP --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c58a378..c1d8e10 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Which versions? -ARG PHP_VERSION=8.2.17 +ARG PHP_VERSION=8.2.18 ARG REDIS_EXT_VERSION=6.0.2 ARG IMAGICK_EXT_VERSION=3.7.0 ARG PCOV_EXT_VERSION=1.0.11 From 1fd4ecc5e90e77e314c6af6e92078bdae2e5e7bb Mon Sep 17 00:00:00 2001 From: Bob Olde Hampsink Date: Mon, 22 Apr 2024 08:42:13 +0200 Subject: [PATCH 08/12] Bump PHP --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9317aaa..7806824 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Which versions? -ARG PHP_VERSION=8.3.4 +ARG PHP_VERSION=8.3.5 ARG REDIS_EXT_VERSION=6.0.2 ARG IMAGICK_EXT_VERSION=3.7.0 ARG PCOV_EXT_VERSION=1.0.11 From b68b93d3df48e741027213018f5b28be5c648808 Mon Sep 17 00:00:00 2001 From: Bob Olde Hampsink Date: Fri, 31 May 2024 12:45:47 +0200 Subject: [PATCH 09/12] Bump PHP --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cb870d4..c546504 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Which versions? -ARG PHP_VERSION=8.3.6 +ARG PHP_VERSION=8.3.7 ARG REDIS_EXT_VERSION=6.0.2 ARG IMAGICK_EXT_VERSION=3.7.0 ARG PCOV_EXT_VERSION=1.0.11 From 55e28a90b88d3993b20bd466eba4c281998afbd9 Mon Sep 17 00:00:00 2001 From: Bob Olde Hampsink Date: Mon, 15 Jul 2024 09:35:56 +0200 Subject: [PATCH 10/12] Bump php --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9be7ee3..98ee89d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Which versions? -ARG PHP_VERSION=8.2.20 +ARG PHP_VERSION=8.2.21 ARG REDIS_EXT_VERSION=6.0.2 ARG IMAGICK_EXT_VERSION=3.7.0 ARG PCOV_EXT_VERSION=1.0.11 From 3e646bffeb453f0352c84c7aa1f1e736ad71faa4 Mon Sep 17 00:00:00 2001 From: Bob Olde Hampsink Date: Mon, 15 Jul 2024 09:36:32 +0200 Subject: [PATCH 11/12] Bump PHP --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c31ce62..f111b62 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Which versions? -ARG PHP_VERSION=8.3.8 +ARG PHP_VERSION=8.3.9 ARG REDIS_EXT_VERSION=6.0.2 ARG IMAGICK_EXT_VERSION=3.7.0 ARG PCOV_EXT_VERSION=1.0.11 From 107f82b9b1b428101ee4c61058178076d9709cb2 Mon Sep 17 00:00:00 2001 From: Bob Olde Hampsink Date: Mon, 19 Aug 2024 10:01:49 +0200 Subject: [PATCH 12/12] Bump PHP --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 44fdf32..1a9cf31 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Which versions? -ARG PHP_VERSION=8.2.21 +ARG PHP_VERSION=8.2.22 ARG REDIS_EXT_VERSION=6.0.2 ARG IMAGICK_EXT_VERSION=3.7.0 ARG PCOV_EXT_VERSION=1.0.11