diff options
author | baude <bbaude@redhat.com> | 2018-10-17 16:42:05 -0500 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2018-10-17 17:04:19 -0500 |
commit | bfc473f982ecdbfbe885d104036ecf9f70f3cd0f (patch) | |
tree | c2c4992606864554b346ebbfa7bddc5061bd3bcc /libpod/runtime_img.go | |
parent | 19c150bef12ff08abc8249cc21275266a7ac74a3 (diff) | |
download | podman-bfc473f982ecdbfbe885d104036ecf9f70f3cd0f.tar.gz podman-bfc473f982ecdbfbe885d104036ecf9f70f3cd0f.tar.bz2 podman-bfc473f982ecdbfbe885d104036ecf9f70f3cd0f.zip |
Vendor in new new buildah/ci
libpod requires new buildah and container image versions to resolve
bug #1640298
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'libpod/runtime_img.go')
-rw-r--r-- | libpod/runtime_img.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libpod/runtime_img.go b/libpod/runtime_img.go index a21ea7673..be8711734 100644 --- a/libpod/runtime_img.go +++ b/libpod/runtime_img.go @@ -164,5 +164,6 @@ func removeStorageContainers(ctrIDs []string, store storage.Store) error { // Build adds the runtime to the imagebuildah call func (r *Runtime) Build(ctx context.Context, options imagebuildah.BuildOptions, dockerfiles ...string) error { - return imagebuildah.BuildDockerfiles(ctx, r.store, options, dockerfiles...) + _, _, err := imagebuildah.BuildDockerfiles(ctx, r.store, options, dockerfiles...) + return err } |