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
For my use case, it would be useful if you could create a single additional build context from multiple sources.
For example, suppose I have a directory /tmp/a, containing a.txt, and a directory /tmp/b, containing b.txt. I would like to be able to run something like the following:
You can solve this with a bake target that does the combining of the context and sets result as an input to other target. For build command I think this case is too app-specific.
Description
For my use case, it would be useful if you could create a single additional build context from multiple sources.
For example, suppose I have a directory
/tmp/a
, containinga.txt
, and a directory/tmp/b
, containingb.txt
. I would like to be able to run something like the following:And have the build context
foo
contain botha.txt
andb.txt
.I only need this to work when both sources are local directories, although for consistency it would be nice if other source types were supported too.
The text was updated successfully, but these errors were encountered: