What is the difference between the ‘COPY’ and ‘ADD’ commands in a Dockerfile?
You should check the ADD and COPY documentation for a more detailed description of their behaviors, but in a nutshell, the major difference is that ADD can do more than COPY: ADD allows <src> to be a URL Referring to comments below, the ADD documentation states that: If is a local tar archive in a … Read more