Ensure no manual input in 'yum install'
To avoid manual input for yum install, the -y
argument should be added to the command.
Risk Level: informational
Platform: Docker
Spectral Rule ID: DOCKR063
REMEDIATION
Add -y
to yum install
FROM fedora:36
- RUN yum install httpd
+ RUN yum install httpd-2.4.54
Read more:
Updated over 1 year ago