From fe21d70c30cd1a5b3583665dd82c59c6a81eab62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20M=C3=B6nch?= Date: Thu, 30 Nov 2023 09:27:38 +0100 Subject: [PATCH] Update redis to v6.0.2 and make it available for PHP 8.3 --- layers/redis/Dockerfile | 2 +- layers/redis/config.json | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/layers/redis/Dockerfile b/layers/redis/Dockerfile index a3a1b5f8..acc01405 100644 --- a/layers/redis/Dockerfile +++ b/layers/redis/Dockerfile @@ -2,7 +2,7 @@ ARG PHP_VERSION ARG BREF_VERSION FROM bref/build-php-$PHP_VERSION:$BREF_VERSION AS ext -RUN pecl install --force redis-6.0.1 +RUN pecl install --force redis-6.0.2 RUN cp `php-config --extension-dir`/redis.so /tmp/redis.so RUN echo 'extension=redis.so' > /tmp/ext.ini diff --git a/layers/redis/config.json b/layers/redis/config.json index a5a35316..eea4b0f4 100644 --- a/layers/redis/config.json +++ b/layers/redis/config.json @@ -2,6 +2,7 @@ "php": [ "80", "81", - "82" + "82", + "83" ] }