diff options
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 } |