Skip to content

Commit

Permalink
Merge pull request PolyJIT#548 from PolyJIT/simbuerg/fix-544-buildah-…
Browse files Browse the repository at this point in the history
…cannot-find-image

fix(environments): buildah cannot find base images.
  • Loading branch information
simbuerg authored May 16, 2023
2 parents 3f9a452 + a5b6218 commit 1e69a6c
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 @@ -398,7 +398,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 1e69a6c

Please sign in to comment.