Merge pull request #8889 from ndeloof/build_args_classic

restore support for multiple build-args
This commit is contained in:
Mathieu Champlon 2021-11-07 11:14:00 +01:00 committed by GitHub
commit e6599c7213
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -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