Skip to content
Lukas Martinelli edited this page Jan 11, 2016 · 2 revisions

Either use Wget or Curl but not both.

Problematic code:

FROM debian
RUN wget http://google.com
RUN curl http://bing.com

Correct code:

FROM debian
RUN curl http://google.com
RUN curl http://bing.com

Rationale:

Don't install two tools that have the same effect and avoid the additional cruft.

Clone this wiki locally