Convert to Dockerfile ADD (wget / git clone)

Convert wget to ADD in Dockerfile

Enter the wget command below and click Convert to see the equivalent ADD instruction in Dockerfile:

(Reminder: If your URL files are protected using authentication, you need to use RUN wget, RUN curl or use another tool from within the container as the ADD instruction doesn't support authentication.)

(Reminder: ADD has tar decompression but it's only for local files. Remote URLs are not decompressed.)

(Reason for this tool: Is there any cache advantage to using ADD vs RUN wget/curl in a Dockerfile?)

Equivalent ADD Instruction in Dockerfile: