From d9120499a0c9daa253239048e78d971589fae337 Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Nov 19 2020 13:39:24 +0000 Subject: Merge pull request #3001 from martinpitt/r8-copr-build Install python-copr and RedHat CA into anaconda-ci container --- diff --git a/dockerfile/anaconda-ci/Dockerfile b/dockerfile/anaconda-ci/Dockerfile index 0456957..9ab1e8d 100644 --- a/dockerfile/anaconda-ci/Dockerfile +++ b/dockerfile/anaconda-ci/Dockerfile @@ -32,6 +32,7 @@ RUN echo dnf update -y && \ RUN pip-3.6 install \ "pylint==2.5.3" \ pocketlint \ + copr \ coverage \ pycodestyle \ dogtail \ @@ -44,6 +45,9 @@ RUN mkdir actions-runner && cd actions-runner && \ LATEST_VER=$(basename $(curl -Ls -o /dev/null -w '%{url_effective}' $URL_BASE/latest)) && \ curl -L "$URL_BASE/download/$LATEST_VER/actions-runner-linux-x64-${LATEST_VER#v}.tar.gz" | tar xvz +RUN curl https://password.corp.redhat.com/RH-IT-Root-CA.crt -o /etc/pki/ca-trust/source/anchors/Red_Hat_IT_Root_CA.crt && \ + update-ca-trust + RUN mkdir /anaconda WORKDIR /anaconda