Skip to content

Commit

Permalink
Merge pull request #10292 from rhatdan/buildah
Browse files Browse the repository at this point in the history
Fix podman-remote build --rm=false ...
  • Loading branch information
openshift-merge-robot authored May 10, 2021
2 parents 5a8b3cf + 07164c1 commit 446e5b3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/bindings/images/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,8 @@ func Build(ctx context.Context, containerFiles []string, options entities.BuildO
}
if options.RemoveIntermediateCtrs {
params.Set("rm", "1")
} else {
params.Set("rm", "0")
}
if len(options.From) > 0 {
params.Set("from", options.From)
Expand Down

0 comments on commit 446e5b3

Please sign in to comment.