Is this a docs issue?
Type of issue
I can't find what I'm looking for
Description
I believe the documentation for the new COPY --parents feature is missing documentation that ** globs are now supported.
See: https://docs.docker.com/reference/dockerfile/#copy---parents, which does not mention ** globs, although they do work.
This was documented with the 1.7 labs blog announcement of --parents:

I have tested that COPY --parents with ** globs DOES work, so its an undocumented feature currently, but an extremely useful one, very near essential.
Location
https://docs.docker.com/reference/dockerfile/#copy---parents
Suggestion
You can also use double-star wildcard (**) to match files under any directory structure. For example, to copy only the Go source code files anywhere in your build context, you can write:
COPY --parents **/*.go /to/dest/dir/
Is this a docs issue?
Type of issue
I can't find what I'm looking for
Description
I believe the documentation for the new
COPY --parentsfeature is missing documentation that**globs are now supported.See: https://docs.docker.com/reference/dockerfile/#copy---parents, which does not mention
**globs, although they do work.This was documented with the 1.7 labs blog announcement of --parents:

I have tested that
COPY --parentswith ** globs DOES work, so its an undocumented feature currently, but an extremely useful one, very near essential.Location
https://docs.docker.com/reference/dockerfile/#copy---parents
Suggestion
From the 1.7 labs blog post):
You can also use double-star wildcard (**) to match files under any directory structure. For example, to copy only the Go source code files anywhere in your build context, you can write: