# vim: set sw=4 ts=4 sts=4 noet : FROM registry.fedoraproject.org/fedora:42 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 \ && groupadd -g 1000 fedora \ && useradd -u 1000 -g 1000 -m fedora \ && : COPY --from=registry.k8s.io/pause /pause /usr/local/bin USER 1000:1000 VOLUME /home/fedora WORKDIR /home/fedora CMD ["pause"]