raulcd commented on code in PR #43121:
URL: https://github.com/apache/arrow/pull/43121#discussion_r1664096939
##########
ci/docker/centos-7-cpp.dockerfile:
##########
@@ -17,11 +17,25 @@
FROM centos:centos7
+# Update mirrors to use vault.centos.org as CentOS 7
+# is EOL since 2024-06-30
+RUN sed -i \
+ -e 's/^mirrorlist/#mirrorlist/' \
+ -e 's/^#baseurl/baseurl/' \
+ -e 's/mirror\.centos\.org/vault.centos.org/' \
+ /etc/yum.repos.d/*.repo
+
# devtoolset is required for C++17
RUN \
yum install -y \
centos-release-scl \
epel-release && \
+ sed -i \
+ -e 's/^mirrorlist/#mirrorlist/' \
+ -e 's/^#baseurl/baseurl/' \
+ -e 's/^# baseurl/baseurl/' \
Review Comment:
finding this one took a bunch of tests :P
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]