We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd3a02d commit 17080e3Copy full SHA for 17080e3
Containerfile.redis
@@ -4,9 +4,9 @@ FROM quay.io/centos/centos:stream9
4
# Install necessary dependencies (gcc, make, etc.) for building Redis from source
5
RUN yum install -y gcc make wget tar gzip openssl openssl-devel && \
6
yum clean all && mkdir -p /etc/redis && \
7
- wget https://download.redis.io/releases/redis-7.4.3.tar.gz && \
8
- tar xzf redis-7.4.3.tar.gz -C /etc/redis --strip-components=1 && \
9
- rm redis-7.4.3.tar.gz && \
+ wget https://download.redis.io/releases/redis-7.2.8.tar.gz && \
+ tar xzf redis-7.2.8.tar.gz -C /etc/redis --strip-components=1 && \
+ rm redis-7.2.8.tar.gz && \
10
chmod 770 /var/run
11
12
# Change working directory to the extracted Redis source code directory
0 commit comments