From e98ad5751d12b6ef052803b30fd397101952294e Mon Sep 17 00:00:00 2001 From: umohnani8 Date: Tue, 1 May 2018 13:25:30 -0400 Subject: Vendor in latest buildah Adds in --iidfile flag to podman build. Signed-off-by: umohnani8 Closes: #707 Approved by: mheon --- vendor/github.com/projectatomic/buildah/image.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'vendor/github.com/projectatomic/buildah/image.go') diff --git a/vendor/github.com/projectatomic/buildah/image.go b/vendor/github.com/projectatomic/buildah/image.go index e5a49f1f9..a54643806 100644 --- a/vendor/github.com/projectatomic/buildah/image.go +++ b/vendor/github.com/projectatomic/buildah/image.go @@ -46,6 +46,7 @@ type containerImageRef struct { dconfig []byte created time.Time createdBy string + historyComment string annotations map[string]string preferredManifestType string exporting bool @@ -303,6 +304,7 @@ func (i *containerImageRef) NewImageSource(ctx context.Context, sc *types.System Created: &i.created, CreatedBy: i.createdBy, Author: oimage.Author, + Comment: i.historyComment, EmptyLayer: false, } oimage.History = append(oimage.History, onews) @@ -310,6 +312,7 @@ func (i *containerImageRef) NewImageSource(ctx context.Context, sc *types.System Created: i.created, CreatedBy: i.createdBy, Author: dimage.Author, + Comment: i.historyComment, EmptyLayer: false, } dimage.History = append(dimage.History, dnews) @@ -521,6 +524,7 @@ func (b *Builder) makeImageRef(manifestType string, exporting bool, compress arc dconfig: dconfig, created: created, createdBy: b.CreatedBy(), + historyComment: b.HistoryComment(), annotations: b.Annotations(), preferredManifestType: manifestType, exporting: exporting, -- cgit v1.2.3-54-g00ecf