Pattern: Use of apt
Issue: -
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