File tree Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -144,8 +144,8 @@ RUN source /opt/rh/devtoolset-${DEVTOOLSET_VERSION}/enable && \
144
144
145
145
# build/install git
146
146
RUN source /opt/rh/devtoolset-${DEVTOOLSET_VERSION}/enable && \
147
- curl -Ls https://github.com/git/git/archive/v2.30.0 .tar.gz -o git.tar.gz && \
148
- echo "8db4edd1a0a74ebf4b78aed3f9e25c8f2a7db3c00b1aaee94d1e9834fae24e61 git.tar.gz" > git-sha.txt && \
147
+ curl -Ls https://github.com/git/git/archive/refs/tags/ v2.45.1 .tar.gz -o git.tar.gz && \
148
+ echo "d98c8f70d58f49f7546d59b25e25f2deae6999eb036a33b0fe6f5d07c33f67c6 git.tar.gz" > git-sha.txt && \
149
149
sha256sum --quiet -c git-sha.txt && \
150
150
mkdir git && \
151
151
tar --strip-components 1 --no-same-owner --directory git -xf git.tar.gz && \
Original file line number Diff line number Diff line change @@ -41,7 +41,6 @@ RUN dnf install -y --enablerepo devel --allowerasing \
41
41
wget \
42
42
zlib-devel \
43
43
gcc-c++ \
44
- git \
45
44
libstdc++-static \
46
45
libunwind \
47
46
libunwind-devel \
@@ -120,6 +119,20 @@ RUN curl -Ls https://github.com/axboe/liburing/archive/refs/tags/liburing-2.1.ta
120
119
cd ../ && \
121
120
rm -rf /tmp/*
122
121
122
+ # build/install git
123
+ RUN curl -Ls https://github.com/git/git/archive/refs/tags/v2.45.1.tar.gz -o git.tar.gz && \
124
+ echo "d98c8f70d58f49f7546d59b25e25f2deae6999eb036a33b0fe6f5d07c33f67c6 git.tar.gz" > git-sha.txt && \
125
+ sha256sum --quiet -c git-sha.txt && \
126
+ mkdir git && \
127
+ tar --strip-components 1 --no-same-owner --directory git -xf git.tar.gz && \
128
+ cd git && \
129
+ make configure && \
130
+ ./configure && \
131
+ make && \
132
+ make install && \
133
+ cd ../ && \
134
+ rm -rf /tmp/*
135
+
123
136
# build/install ninja
124
137
RUN curl -Ls https://github.com/ninja-build/ninja/archive/refs/tags/v1.10.2.zip -o ninja.zip && \
125
138
echo "4e7b67da70a84084d5147a97fcfb867660eff55cc60a95006c389c4ca311b77d ninja.zip" > ninja-sha.txt && \
You can’t perform that action at this time.
0 commit comments