-
Notifications
You must be signed in to change notification settings - Fork 424
DL3010
Tanmay Pereira Naik edited this page Mar 8, 2024
·
3 revisions
https://docs.docker.com/develop/develop-images/instructions/#add-or-copy
Although ADD and COPY are functionally similar, generally speaking, COPY is preferred. That’s because it’s more transparent than ADD. COPY only supports the basic copying of local files into the container, while ADD has some features (like local-only tar extraction and remote URL support) that are not immediately obvious. Consequently, the best use for ADD is local tar file auto-extraction into the image, as in ADD rootfs.tar.xz /.