forked from rpms/leapp-repository
32 lines
1.2 KiB
Diff
32 lines
1.2 KiB
Diff
|
From d6e57eec3ded2887008055442ba906a92c572a01 Mon Sep 17 00:00:00 2001
|
||
|
From: Matej Matuska <mmatuska@redhat.com>
|
||
|
Date: Thu, 10 Oct 2024 14:03:36 +0200
|
||
|
Subject: [PATCH 09/40] Replace mirror.centos.org with vault.centos.org Centos
|
||
|
7 Containerfile
|
||
|
|
||
|
As mirror.centos.org is dead, replace mirrorlist with baseurl pointing
|
||
|
to vault.centos.org in utils/container-builds/Containerfile.centos7.
|
||
|
---
|
||
|
utils/container-builds/Containerfile.centos7 | 5 +++++
|
||
|
1 file changed, 5 insertions(+)
|
||
|
|
||
|
diff --git a/utils/container-builds/Containerfile.centos7 b/utils/container-builds/Containerfile.centos7
|
||
|
index 70ac3df1..af00eddb 100644
|
||
|
--- a/utils/container-builds/Containerfile.centos7
|
||
|
+++ b/utils/container-builds/Containerfile.centos7
|
||
|
@@ -2,6 +2,11 @@ FROM centos:7
|
||
|
|
||
|
VOLUME /repo
|
||
|
|
||
|
+# mirror.centos.org is dead, comment out mirrorlist and set baseurl to vault.centos.org
|
||
|
+RUN sed -i s/mirror.centos.org/vault.centos.org/ /etc/yum.repos.d/CentOS-*.repo
|
||
|
+RUN sed -i s/^#\s*baseurl=http/baseurl=http/ /etc/yum.repos.d/CentOS-*.repo
|
||
|
+RUN sed -i s/^mirrorlist=http/#mirrorlist=http/ /etc/yum.repos.d/CentOS-*.repo
|
||
|
+
|
||
|
RUN yum update -y && \
|
||
|
yum install -y rpm-build python-devel make git
|
||
|
|
||
|
--
|
||
|
2.47.0
|
||
|
|