From a4b17dbade20420c70867c600a87955296b84f36 Mon Sep 17 00:00:00 2001 From: Tomasz Torcz Date: Fri, 22 Nov 2024 17:27:11 +0100 Subject: [PATCH] containerfile: f41 comes with dnf5 in minimal container --- Containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index 781df52..bb267e8 100644 --- a/Containerfile +++ b/Containerfile @@ -1,12 +1,12 @@ FROM registry.fedoraproject.org/fedora-minimal:41 -RUN microdnf install --assumeyes \ +RUN dnf install --assumeyes \ ansible \ ansible-collection-kubernetes-core \ python3-paramiko \ python3-kubernetes \ python3-jmespath \ - && microdnf clean all + && dnf clean all # needed for ansible getuser() workaround RUN chmod a+w /etc/passwd