Merge pull request #3633 from QiWang19/network

fix build --network=container
This commit is contained in:
OpenShift Merge Robot
2019-07-24 12:47:29 +02:00
committed by GitHub

View File

@ -101,6 +101,10 @@ func getNsValues(c *cliconfig.BuildValues) ([]buildah.NamespaceOption, error) {
Name: string(specs.NetworkNamespace),
Host: true,
})
} else if c.Network == "container" {
ret = append(ret, buildah.NamespaceOption{
Name: string(specs.NetworkNamespace),
})
} else if c.Network[0] == '/' {
ret = append(ret, buildah.NamespaceOption{
Name: string(specs.NetworkNamespace),