From a9e5f4e55a88fd6625fc06ecc4ce8da04a4bc3f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikola=20Forr=C3=B3?= Date: Tue, 10 Dec 2024 12:29:39 +0100 Subject: [PATCH] Try to fix the ppc64le container build issues MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nikola Forró --- containers/Containerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/containers/Containerfile b/containers/Containerfile index e6b7d44..b43b1cc 100644 --- a/containers/Containerfile +++ b/containers/Containerfile @@ -6,6 +6,7 @@ FROM registry.fedoraproject.org/fedora:41 ENV ANSIBLE_PYTHON_INTERPRETER=/usr/bin/python3 \ ANSIBLE_STDOUT_CALLBACK=debug -RUN dnf -y upgrade && \ - dnf -y install ansible python3-pip && \ - dnf clean all +RUN DNF=dnf; [ `$(uname -m)` = "ppc64le" ] && DNF="dnf --setopt=sslverify=false"; \ + $DNF -y upgrade && \ + $DNF -y install ansible python3-pip && \ + $DNF clean all