From 2767059aa071b56bdadb2f399f821baf1c561c66 Mon Sep 17 00:00:00 2001 From: rdimaio Date: Fri, 8 Mar 2024 13:22:11 +0100 Subject: [PATCH] xrootd: On alma9, use el9 repo instead of centos7; #293 --- xrootd/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xrootd/Dockerfile b/xrootd/Dockerfile index 1740cdc..b221b0a 100644 --- a/xrootd/Dockerfile +++ b/xrootd/Dockerfile @@ -3,7 +3,7 @@ FROM almalinux:9 # Install CERN CA ADD ca.repo /etc/yum.repos.d/ca.repo -RUN dnf install -y epel-release.noarch http://linuxsoft.cern.ch/wlcg/centos7/x86_64/wlcg-repo-1.0.0-1.el7.noarch.rpm && \ +RUN dnf install -y epel-release.noarch https://linuxsoft.cern.ch/wlcg/el9/x86_64/wlcg-repo-1.0.0-1.el9.noarch.rpm && \ dnf update -y && \ dnf upgrade -y && \ dnf --disablerepo="*" --enablerepo="carepo" -y install 'ca*' && \