Pattern: Missing use of yum clean all
Issue: -
yum clean all
missing after yum command.
Example of incorrect code:
RUN yum install -y httpd-2.24.2
Example of correct code:
RUN yum install -y httpd-2.24.2 && yum clean all
Pattern: Missing use of yum clean all
Issue: -
yum clean all
missing after yum command.
Example of incorrect code:
RUN yum install -y httpd-2.24.2
Example of correct code:
RUN yum install -y httpd-2.24.2 && yum clean all