Install bind-utils

For testing DNS
main
Dustin 2025-07-05 20:41:51 -05:00
parent 55559bbdef
commit 147ebbce45
1 changed files with 5 additions and 3 deletions

View File

@ -1,14 +1,16 @@
# vim: set sw=4 ts=4 sts=4 noet :
FROM registry.fedoraproject.org/fedora:40 FROM registry.fedoraproject.org/fedora:40
RUN --mount=type=cache,target=/var/cache \ RUN --mount=type=cache,target=/var/cache \
dnf install -y \ dnf install -y \
--setopt=install_weak_deps=0 \ --setopt=install_weak_deps=0 \
bind-utils \
less \ less \
openssh-clients \ openssh-clients \
rsync \ rsync \
iproute \ iproute \
iputils \ iputils \
procps-ng \ procps-ng \
&& groupadd -g 1000 fedora \ && groupadd -g 1000 fedora \
&& useradd -u 1000 -g 1000 -m fedora \ && useradd -u 1000 -g 1000 -m fedora \
&& : && :