You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ docker build .
Sending build context to Docker daemon 1.878MB
Step 1/2 : FROM alpine
---> 3fd9065eaf02
Step 2/2 : COPY Dockerfile Dockerfile2 /root
When using COPY with more than one source file, the destination must be a directory and end with a /
If a COPY has more than two arguments, the last argument must be a directory. The Docker builder will check for this by validating that the last argument ends with the OS's path segment separator (either / or \).
The text was updated successfully, but these errors were encountered:
If a
COPY
has more than two arguments, the last argument must be a directory. The Docker builder will check for this by validating that the last argument ends with the OS's path segment separator (either/
or\
).The text was updated successfully, but these errors were encountered: