From 147ebbce458ff729485426f3e15fe945577797f4 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sat, 5 Jul 2025 20:41:51 -0500 Subject: [PATCH] Install bind-utils For testing DNS --- Containerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Containerfile b/Containerfile index 73e8f67..6521433 100644 --- a/Containerfile +++ b/Containerfile @@ -1,14 +1,16 @@ +# vim: set sw=4 ts=4 sts=4 noet : FROM registry.fedoraproject.org/fedora:40 RUN --mount=type=cache,target=/var/cache \ dnf install -y \ --setopt=install_weak_deps=0 \ + bind-utils \ less \ openssh-clients \ rsync \ - iproute \ - iputils \ - procps-ng \ + iproute \ + iputils \ + procps-ng \ && groupadd -g 1000 fedora \ && useradd -u 1000 -g 1000 -m fedora \ && :