Browse Source

Use pip3 in CentOS Stream 8 CI container

There is no 'pip', only 'pip3'

Fixes: c96434d6d288f23a3aa462246ccd6121673b5b69

Signed-off-by: Neal Gompa <ngompa13@gmail.com>
Neal Gompa 2 years ago
parent
commit
e3c1ef7246
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dev/containers/centos8-rpms-py3

+ 1 - 1
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 \