File tree Expand file tree Collapse file tree 2 files changed +7
-9
lines changed
Expand file tree Collapse file tree 2 files changed +7
-9
lines changed Original file line number Diff line number Diff line change 1717 python-version : ' 3.11'
1818 - name : Check Python version
1919 run : python --version
20- - name : Install pip-tools
21- run : pip install --user pip-tools
22- - name : Check lip-compile version
23- run : pip-compile --version
24- - name : Generate requirements.txt file
25- run : pip-compile -v --generate-hashes pyproject.toml
20+ - name : Install PDM
21+ run : pip install pdm
22+ - name : Export dependencies to requirements.txt
23+ run : pdm export --without-hashes --format requirements > requirements.txt
2624 - name : List requirements.txt file
2725 run : cat requirements.txt
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ FROM quay.io/centos/centos:stream9
44# Install necessary dependencies (gcc, make, etc.) for building Redis from source
55RUN yum install -y gcc make wget tar gzip openssl openssl-devel && \
66 yum clean all && mkdir -p /etc/redis && \
7- wget https://download.redis.io/releases/redis-7.2.7 .tar.gz && \
8- tar xzf redis-7.2.7 .tar.gz -C /etc/redis --strip-components=1 && \
9- rm redis-7.2.7 .tar.gz && \
7+ wget https://download.redis.io/releases/redis-7.2.8 .tar.gz && \
8+ tar xzf redis-7.2.8 .tar.gz -C /etc/redis --strip-components=1 && \
9+ rm redis-7.2.8 .tar.gz && \
1010 chmod 770 /var/run
1111
1212# Change working directory to the extracted Redis source code directory
You can’t perform that action at this time.
0 commit comments