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