2 DL3027
Gerrit-K edited this page 2019-07-09 09:01:41 +02:00

Do not use apt as it is meant to be an end-user tool, use apt-get or apt-cache instead.

Problematic code:

FROM busybox
RUN apt install curl=1.1.0

Correct code:

FROM busybox
RUN apt-get install curl=1.1.0

Rationale:

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