Merge pull request #8113 from joselfr/master

Add missing --add-host args to the build command
This commit is contained in:
Anca Iordache 2021-02-25 15:54:54 +01:00 committed by GitHub
commit 245ede1d75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -1875,6 +1875,11 @@ class _CLIBuilder:
command_builder.add_arg("--iidfile", iidfile)
command_builder.add_arg("--platform", platform)
command_builder.add_arg("--isolation", isolation)
if extra_hosts:
for host, ip in extra_hosts.items():
command_builder.add_arg("--add-host", "{}:{}".format(host, ip))
args = command_builder.build([path])
magic_word = "Successfully built "