Skip to content

Files

Latest commit

 

History

History
24 lines (15 loc) · 327 Bytes

DL3031.md

File metadata and controls

24 lines (15 loc) · 327 Bytes

Pattern: Use of yum update

Issue: -

Description

Do not use yum update.

Example of incorrect code:

FROM centos
RUN yum update -y

Example of correct code:

FROM centos

Further Reading