From 22faf7abb04896f11d59ca78774933e9ec26a326 Mon Sep 17 00:00:00 2001 From: Anoop C S Date: Tue, 13 Sep 2022 12:42:25 +0530 Subject: [PATCH] container: Switch to CentOS Stream 9 as base image Signed-off-by: Anoop C S --- tests/container/Containerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/container/Containerfile b/tests/container/Containerfile index 6de7afa..dec252e 100644 --- a/tests/container/Containerfile +++ b/tests/container/Containerfile @@ -1,6 +1,8 @@ -FROM registry.fedoraproject.org/fedora:36 +FROM quay.io/centos/centos:stream9 -RUN yum install \ +RUN yum install -y epel-release + +RUN yum --enablerepo=crb install \ -y --setopt=install_weak_deps=False \ git \ mercurial \ @@ -16,6 +18,7 @@ RUN yum install \ python3.9 \ samba-common-tools \ rpm-build \ + pyproject-rpm-macros \ 'python3dist(flake8)' \ 'python3dist(inotify-simple)' \ 'python3dist(mypy)' \