-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
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
CLI inconsistency with docker build #7107
Comments
Thanks for opening the issue, @georgmu! @TomSweeneyRedHat @nalind PTAL |
This works: echo -e "FROM debian:testing\nRUN /bin/echo 'Test'" | buildah bud -t debian-test - So this looks like a podman bug. |
yeah, and it doesn't work if you replace |
Fixed merged into master branch. |
Should this be added to the v2.0 branch too? |
#7121 is already marked for backporting |
Is this a BUG REPORT or FEATURE REQUEST? (leave only one on its own line)
/kind bug
Description
Steps to reproduce the issue:
Describe the results you received:
With podman as docker replacement, I get the following error:
Describe the results you expected:
With docker, the container is built and tagged:
Additional information you deem important (e.g. issue happens only occasionally):
Output of
podman version
:Podman works by using
podman build ... -f -
, but this does not work with docker. Since there are scripts which are primarily targeted at docker (e.g. the travis-ci script in systemd) and use the docker-compatible syntax, I think podman is the right place to align its CLI with docker.The text was updated successfully, but these errors were encountered: