We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
buildah bud is gobbling stdin that does not belong to it. This makes it impossible to pipe script commands to a shell.
$ printf "echo hi\r\nbuildah bud -t foo .\necho bye\n" | bash hi STEP 1: ... ... <sha>
Note that the 'echo bye' is gobbled up by buildah. If you redirect stdin on the buildah command, it works as expected:
$ printf "echo hi\r\nbuildah bud -t foo . </dev/null\necho bye\n" | bash hi ... bye
See also: containers/podman#8066
The text was updated successfully, but these errors were encountered:
I am not seeing this happen on the main branch of Podman, BTW. But opened a PR anyways,
Sorry, something went wrong.
This is fixed in master branch.
No branches or pull requests
buildah bud is gobbling stdin that does not belong to it. This makes it impossible to pipe script commands to a shell.
Note that the 'echo bye' is gobbled up by buildah. If you redirect stdin on the buildah command, it works as expected:
See also: containers/podman#8066
The text was updated successfully, but these errors were encountered: