mirror of https://github.com/docker/compose.git
Merge pull request #8889 from ndeloof/build_args_classic
restore support for multiple build-args
This commit is contained in:
commit
e6599c7213
|
@ -243,6 +243,7 @@ func imageBuildOptions(options buildx.Options) dockertypes.ImageBuildOptions {
|
|||
func toMapStringStringPtr(source map[string]string) map[string]*string {
|
||||
dest := make(map[string]*string)
|
||||
for k, v := range source {
|
||||
v := v
|
||||
dest[k] = &v
|
||||
}
|
||||
return dest
|
||||
|
|
Loading…
Reference in New Issue