-y
switch for dnf install
DOK-W1009Without the -y
/--assume-yes
option it might be possible for the build to break without human intervention.
FROM fedora:32
RUN dnf install httpd-2.4.46 && dnf clean all
FROM fedora:32
RUN dnf install -y httpd-2.4.46 && dnf clean all