Merge pull request #2636 from eyherabh/patch-1

Replaces ADD with COPY in the COPY section
This commit is contained in:
Sebastiaan van Stijn 2020-08-05 09:22:51 +02:00 committed by GitHub
commit 97501d1be3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1276,11 +1276,11 @@ COPY test.txt /absoluteDir/
When copying files or directories that contain special characters (such as `[`
and `]`), you need to escape those paths following the Golang rules to prevent
them from being treated as a matching pattern. For example, to add a file
them from being treated as a matching pattern. For example, to copy a file
named `arr[0].txt`, use the following;
```dockerfile
ADD arr[[]0].txt /mydir/
COPY arr[[]0].txt /mydir/
```
All new files and directories are created with a UID and GID of 0, unless the