remove Size, since it's tied to the fs after a real pull

Signed-off-by: Antonio Murdaca <runcom@redhat.com>
This commit is contained in:
Antonio Murdaca
2016-01-20 18:43:13 +01:00
parent 30affa20dd
commit 5496a14602

View File

@@ -51,7 +51,6 @@ type imageInspect struct {
Config *containerTypes.Config
Architecture string
Os string
Size int64
Registry string
}
@@ -247,7 +246,6 @@ func makeImageInspect(img *image.Image, index, tag string, tagList []string) *im
Config: img.Config,
Architecture: img.Architecture,
Os: img.OS,
Size: img.Size,
Registry: index,
}
}