From 927d3dab80a48e338d2b7b6a54cafe39c6ad1672 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Mon, 29 Apr 2019 10:03:05 -0400 Subject: [PATCH] Install operator-courier from updates-testing. Do this because we often want to *test* the rpm by its use in a docker image. Waiting the extra time for the stable updates push is not valuable. --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index d380108..bf48168 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,6 +23,10 @@ RUN dnf -y install \ && dnf -y clean all \ && rm -rf /tmp/* +RUN dnf --enablerepo=updates-testing -y update python3-operator-courier \ + && dnf -y clean all \ + && rm -rf /tmp/* + RUN if [ "$cacert_url" != "undefined" ]; then \ cd /etc/pki/ca-trust/source/anchors \ && curl -O $cacert_url \