From a74629a9488808f4a1eefe217407ae78cbe2609c Mon Sep 17 00:00:00 2001 From: Karolina Przerwa Date: Tue, 23 May 2023 11:58:19 +0200 Subject: [PATCH] Dockerfile: upgrade xrootd version --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index dbe093c..0ba490a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,6 +14,10 @@ ENV KEYTAB_PATH '/var/lib/secrets' ENV KERBEROS_TOKEN_PATH '/var/run/krb5-tokens' RUN dnf install -y epel-release +RUN dnf update -y +# CRB (Code Ready Builder): equivalent repository to well-known CentOS PowerTools +RUN dnf install -y yum-utils +RUN dnf config-manager --set-enabled crb # Volume where to mount the keytab as a secrets # If credentials are passed as username and password with @@ -24,7 +28,7 @@ RUN dnf install -y kstart krb5-workstation RUN mkdir -p $KEYTAB_PATH && chmod a+rw $KEYTAB_PATH -ARG xrootd_version="5.5.4" +ARG xrootd_version="5.5.5" RUN if [ ! -z "$xrootd_version" ] ; then XROOTD_V="-$xrootd_version" ; else XROOTD_V="" ; fi && \ echo "Will install xrootd version: $XROOTD_V (latest if empty)" && \ dnf install -y xrootd"$XROOTD_V" python3-xrootd"$XROOTD_V"