-
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
podman-remote build: -f gets confused #9871
Comments
@vrothberg @nalind is there an easy way to add a single file to the copier of the context directory? |
@edsantiago is finding all of the little warts in podman-remote build. :^). I have been trying to kill them off as quickly as possible. |
Yes, that's possible (see https://github.com/containers/podman/blob/master/cmd/podman/containers/cp.go#L362). Looking that the bindings for |
The logic there is already checking for exclusions, and I think that slipping additional files into the tar stream (if we need to emulate something like the multiple-Dockerfiles feature) is going to be marginally easier with the current logic. |
As an FYI: there are 52 tests in |
I had a look at the code and it seems that the logic in |
Ah, I have another idea. |
Something for bug week. The longer I read the code, the more questions I have. |
A friendly reminder that this issue had no activity for 30 days. |
Still present. This is the biggest problem facing buildah-bud tests under podman-remote: there are 53 buildah-bud tests that need to be skipped because of this bug. |
A friendly reminder that this issue had no activity for 30 days. |
podman-remote build has to handle multiple different locations for the Containerfile. Currently this works in local mode but not when using podman-remote. Fixes: containers#9871 Signed-off-by: Daniel J Walsh <[email protected]>
podman-remote build has to handle multiple different locations for the Containerfile. Currently this works in local mode but not when using podman-remote. Fixes: containers#9871 Signed-off-by: Daniel J Walsh <[email protected]>
podman-remote build has to handle multiple different locations for the Containerfile. Currently this works in local mode but not when using podman-remote. Fixes: containers#9871 Signed-off-by: Daniel J Walsh <[email protected]>
The
-f
flag is looking forloveDockerfiles in all the wrong places:$ bin/podman system service --timeout=0
In window 2:
Non-remote
podman build
works fine.The text was updated successfully, but these errors were encountered: