Published on

Docker COPY vs ADD

// ADD foo /path
//
// Add the file 'foo' to '/path'. Tarball and Remote URL (http, https) handling
// exist here. If you do not wish to have this automatic handling, use COPY.


// COPY foo /path
//
// Same as 'ADD' but without the tar and remote url handling.

Reference