From e3c1ef7246a222b41a229766e494f1fd312c348c Mon Sep 17 00:00:00 2001 From: Neal Gompa Date: Sep 13 2021 18:11:52 +0000 Subject: Use pip3 in CentOS Stream 8 CI container There is no 'pip', only 'pip3' Fixes: c96434d6d288f23a3aa462246ccd6121673b5b69 Signed-off-by: Neal Gompa --- diff --git a/dev/containers/centos8-rpms-py3 b/dev/containers/centos8-rpms-py3 index ff520da..3cc4eef 100644 --- a/dev/containers/centos8-rpms-py3 +++ b/dev/containers/centos8-rpms-py3 @@ -25,7 +25,7 @@ RUN dnf -y install \ which \ git -RUN pip install pagure-messages +RUN pip3 install pagure-messages RUN cd / \ && GIT_TRACE=1 GIT_CURL_VERBOSE=1 git clone -b $BRANCH $REPO \