Merge pull request #19113 from Microsoft/jjh/fix-windows-builder

Windows: Fix docker build not to sigsegv the daemon
This commit is contained in:
Brian Goff 2016-01-05 20:54:00 -05:00
commit 5ccd33134f

View file

@ -396,7 +396,7 @@ func containsWildcards(name string) bool {
func (b *Builder) processImageFrom(img builder.Image) error {
b.image = img.ID()
if img.Config != nil {
if img.Config() != nil {
b.runConfig = img.Config()
}