Skip to content

Commit

Permalink
fix(environments): buildah cannot find base images.
Browse files Browse the repository at this point in the history
  • Loading branch information
simbuerg committed Mar 7, 2023
1 parent cd6b9dd commit eb03c36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchbuild/environments/adapters/buildah.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ def _create(self, tag: str, from_: model.FromLayer) -> model.MaybeContainer:
image = model.Image(tag, from_, [])

# container_id, err = run(bb_buildah('from')[from_.base])
res = run(bb_buildah('from')[from_.base])
res = run(bb_buildah('from')[from_.base.lower()])

if isinstance(res, Err):
raise ImageCreateError(tag, message=str(res.unwrap_err()))
Expand Down

0 comments on commit eb03c36

Please sign in to comment.