ARG distro_image="fedora"
ARG distro_tag="latest"

FROM ${base_distro}:${distro_tag}

ARG packages

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

STOPSIGNAL RTMIN+3
