ARG distro_image="fedora-minimal"
ARG distro_tag="latest"

FROM ${distro_image}:${distro_tag}

ARG packages

RUN dnf update -y
RUN dnf -y install python3 python3-libdnf5 iproute hostname sudo vim ${packages}
RUN dnf clean all

STOPSIGNAL RTMIN+3
