Skip to content

Files

Latest commit

 

History

History
28 lines (17 loc) · 478 Bytes

DL3039.md

File metadata and controls

28 lines (17 loc) · 478 Bytes

Pattern: Use of dnf update

Issue: -

Description

Problems include:

Updates failing on packages from base images in unprivileged containers
Inconsistencies between builds producing problems for application developers

Example of incorrect code:

FROM fedora
RUN dnf update -y

Example of correct code:

FROM centos

Further Reading