Skip to content

Files

Latest commit

 

History

History
25 lines (16 loc) · 515 Bytes

DL3027.md

File metadata and controls

25 lines (16 loc) · 515 Bytes

Pattern: Use of apt

Issue: -

Description

apt is discouraged by the Linux distributions as an unattended tool as its interface may suffer changes between versions. Better use the more stable apt-get and apt-cache.

Example of incorrect code:

FROM busybox
RUN apt install curl=1.1.0

Example of correct code:

FROM busybox
RUN apt-get install curl=1.1.0

Further Reading