From a9f4b4ede934bb9881527210f93609197af16fa8 Mon Sep 17 00:00:00 2001 From: Sally O'Malley Date: Wed, 13 Mar 2019 14:47:52 -0400 Subject: [PATCH] libvirt CI Dockerfile fix: Originally we installed nss_wrapper package from epel-testing, I think because it wasn't available in epel repo (I'm not 100%sure) We can now install from the stable epel repo, so no longer need the epel-testing repo. That's good, because epel-testing is no longer configured in the base image (the build was failing until I removed it, and I realized we no longer needed it). --- images/nested-libvirt/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/images/nested-libvirt/Dockerfile b/images/nested-libvirt/Dockerfile index 89d54aa6013..e7bae43e24d 100644 --- a/images/nested-libvirt/Dockerfile +++ b/images/nested-libvirt/Dockerfile @@ -14,7 +14,7 @@ RUN yum install -y \ epel-release \ gettext \ google-cloud-sdk \ - openssh-clients && \ - yum --enablerepo=epel-testing install -y nss_wrapper && \ + openssh-clients \ + nss_wrapper && \ yum -y update && \ yum clean all