Disable ubi repos during container builds

When ubi is used to build the base image,
there is a ubi.repo file added. The rpms from
these repos can clash which rpms from
repos put down from CI.

This patch disables the ubi repos if
they exist to minimize clashes.

Change-Id: I6b05702b4ed17b99eb8246d6740dd74c0ebef758
Related-Bug: BZ2022749
This commit is contained in:
Ronelle Landy 2021-11-16 09:10:34 -05:00
parent 0d3252d5d7
commit 4fb684e62b
1 changed files with 1 additions and 0 deletions

View File

@ -1,4 +1,5 @@
tcib_actions:
- run: if [ -f "/etc/yum.repos.d/ubi.repo" ]; then dnf config-manager --set-disabled "ubi*" && dnf clean all && rm -rf /var/cache/dnf; fi
- run: >-
dnf install -y crudini &&
crudini --del /etc/dnf/dnf.conf main override_install_langs &&