Skip to content

Commit 531977d

Browse files
authored
Merge pull request #603 from starred-gijs/redis-layer
Upgrade Redis to v6.2.0
2 parents 506e6f0 + f39d590 commit 531977d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

layers/redis-igbinary/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ARG BREF_VERSION
33
FROM bref/build-php-$PHP_VERSION:$BREF_VERSION AS ext
44

55
RUN pecl install igbinary && \
6-
pecl install -D 'enable-redis-igbinary="yes"' redis && \
6+
pecl install -D 'enable-redis-igbinary="yes"' --force redis-6.2.0 && \
77
cp `php-config --extension-dir`/igbinary.so /tmp/igbinary.so && \
88
cp `php-config --extension-dir`/redis.so /tmp/redis.so && \
99
echo 'extension=igbinary.so' > /tmp/ext-igbinary.ini && \

layers/redis/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARG PHP_VERSION
22
ARG BREF_VERSION
33
FROM bref/build-php-$PHP_VERSION:$BREF_VERSION AS ext
44

5-
RUN pecl install --force redis-6.1.0
5+
RUN pecl install --force redis-6.2.0
66
RUN cp `php-config --extension-dir`/redis.so /tmp/redis.so
77
RUN echo 'extension=redis.so' > /tmp/ext.ini
88

0 commit comments

Comments
 (0)