summaryrefslogtreecommitdiff
path: root/pkg/varlinkapi/images.go
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@pm.me>2019-12-05 15:11:40 -0500
committerMatthew Heon <matthew.heon@pm.me>2019-12-05 15:11:40 -0500
commit60bfa305a88c686c91ebc0f8f98ac14405ae10cf (patch)
treeb83e8a8c2decb9fc831d818a6d10824115251b9e /pkg/varlinkapi/images.go
parentc4fbd2fc9489b318298ada61e4f98d0097bc0b0d (diff)
downloadpodman-60bfa305a88c686c91ebc0f8f98ac14405ae10cf.tar.gz
podman-60bfa305a88c686c91ebc0f8f98ac14405ae10cf.tar.bz2
podman-60bfa305a88c686c91ebc0f8f98ac14405ae10cf.zip
Add ONBUILD support to --change
Return types had to change a bit for this, but since we can wrap the old v1.ImageConfig, changes are overall not particularly bad. At present, I believe this only works with commit, not import. This matches how things were before we changed to the new parsing so I think this is fine. Signed-off-by: Matthew Heon <matthew.heon@pm.me>
Diffstat (limited to 'pkg/varlinkapi/images.go')
-rw-r--r--pkg/varlinkapi/images.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/varlinkapi/images.go b/pkg/varlinkapi/images.go
index 7abffa42a..604a455a5 100644
--- a/pkg/varlinkapi/images.go
+++ b/pkg/varlinkapi/images.go
@@ -602,7 +602,7 @@ func (i *LibpodAPI) ImportImage(call iopodman.VarlinkCall, source, reference, me
{Comment: message},
}
config := v1.Image{
- Config: configChanges,
+ Config: configChanges.ImageConfig,
History: history,
}
newImage, err := i.Runtime.ImageRuntime().Import(getContext(), source, reference, nil, image.SigningOptions{}, config)