Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 395 Bytes

DL3032.md

File metadata and controls

23 lines (14 loc) · 395 Bytes

Pattern: Missing use of yum clean all

Issue: -

Description

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

Further Reading