Pattern: Use of wget
and curl
Issue: -
Don't install two tools that have the same effect and avoid the additional cruft.
Example of incorrect code:
FROM debian
RUN wget http://google.com
RUN curl http://bing.com
Example of correct code:
FROM debian
RUN curl http://google.com
RUN curl http://bing.com