We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02de7ee commit cce38d8Copy full SHA for cce38d8
containers/Containerfile
@@ -6,6 +6,7 @@ FROM registry.fedoraproject.org/fedora:41
6
ENV ANSIBLE_PYTHON_INTERPRETER=/usr/bin/python3 \
7
ANSIBLE_STDOUT_CALLBACK=debug
8
9
-RUN dnf -y upgrade && \
10
- dnf -y install ansible python3-pip && \
11
- dnf clean all
+RUN DNF=dnf; [ "$(uname -m)" = "ppc64le" ] && DNF="dnf --setopt=sslverify=false"; \
+ $DNF -y upgrade && \
+ $DNF -y install ansible python3-pip && \
12
+ $DNF clean all
0 commit comments