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
Currently build arguments either have the value passed in with build_args in the constructor or the string value assigned in the dockerfile when the arg is defined. However, it is possible to set the value of an arg based on the value of a previous arg using shell substitution.
Here is an example of the current behavior causing issues when using other properties that do variable substitution based on the values of build args.
Currently build arguments either have the value passed in with
build_args
in the constructor or the string value assigned in the dockerfile when the arg is defined. However, it is possible to set the value of an arg based on the value of a previous arg using shell substitution.Here is an example of the current behavior causing issues when using other properties that do variable substitution based on the values of build args.
These examples demonstrate how docker handles the shell substitution.
Examples of building this image:
Note that each has a different output for step 4.
However, using the library, the substitution is not done.
The text was updated successfully, but these errors were encountered: