From 4ee16135e6b7997615c3e670903fb415b9d91703 Mon Sep 17 00:00:00 2001 From: garciagenrique Date: Tue, 13 Aug 2024 17:20:54 +0200 Subject: [PATCH] test python pip upgrade --- containers/rucio-client/Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/containers/rucio-client/Dockerfile b/containers/rucio-client/Dockerfile index add9bda..2ad63d9 100644 --- a/containers/rucio-client/Dockerfile +++ b/containers/rucio-client/Dockerfile @@ -21,7 +21,6 @@ RUN dnf upgrade -y \ # install useful tools RUN dnf -y install git htop wget -RUN python3 -m pip install --upgrade pip # EGI trust anchors RUN curl -Lo /etc/yum.repos.d/egi-trustanchors.repo https://repository.egi.eu/sw/production/cas/1/current/repo-files/egi-trustanchors.repo \ @@ -42,6 +41,11 @@ RUN mkdir -p /etc/vomses \ # install reana-client ENV LC_ALL=en_US.UTF-8 + +USER user +RUN python3 -m pip install --upgrade pip + +USER root RUN python3 -m pip install reana-client==0.9.3 USER user