From 92c8f723f9bec89a56948ecbbee074857876d3fa Mon Sep 17 00:00:00 2001 From: Madhu Rajanna Date: Fri, 19 Nov 2021 12:53:19 +0530 Subject: [PATCH] ci: use official CentOS container location registry.centos.org is not officially maintained by the CentOS infrastructure team. The container images on quay.io are the official once and we should use those instead. Signed-off-by: Madhu Rajanna --- deploy/Dockerfile | 2 +- mirror/Containerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/Dockerfile b/deploy/Dockerfile index 7b3d19fd9..208bd2aa8 100644 --- a/deploy/Dockerfile +++ b/deploy/Dockerfile @@ -1,4 +1,4 @@ -FROM centos:latest +FROM quay.io/centos/centos:latest RUN true \ && yum -y install git make python3-pip \ diff --git a/mirror/Containerfile b/mirror/Containerfile index efedeeb2d..fec4e7905 100644 --- a/mirror/Containerfile +++ b/mirror/Containerfile @@ -1,4 +1,4 @@ -FROM centos:latest +FROM quay.io/centos/centos:latest RUN true \ && yum -y install skopeo \