Nalin Dahyabhai
Nalin Dahyabhai
Obsoleted by https://github.com/containers/buildah/pull/5959, closing.
I don't think I understand enough about the cloud providers to say for sure. For interacting with registries, it expects to find authentication secrets in the format described in https://github.com/containers/image/blob/main/docs/containers-auth.json.5.md....
We turned off the "freezing" of volume directories during the build as the default behavior in 1.37, with a `--compat-volumes` CLI flag and corresponding API flag to select the older...
> @danishprakash This could be "entertaining". The definition for DefaultStoreOptions() in c/storage types changed in 1.51 from four variables passed in to zero passed in. I think if you vendored...
Yes, this looks like what https://github.com/containers/container-selinux/pull/367 was addressing. Checking the audit log for an SELinux policy denial should allow us to confirm if that's the case.
The updated policy would need to be applied on the node itself.
The change was part of the container-selinux 2.237 release, which I think is currently a candidate for 10.1. If you need it in a release before then, then yes, I...
It looks like this changed between classic `docker build` and the newer BuildKit-based `docker build`, as I get different results by setting DOCKER_BUILDKIT to 0 or 1 in the environment...
Yeah, this one's a surprise. Note to self: need to check if the `docker build` behavior depends on whether or not the glob includes wildcards or metacharacters, or if it's...
@rhatdan yes, depending on whether I set DOCKER_BUILDKIT to 0 or 1, this may or may not produce an error: ```bash mkdir /tmp/glob; (echo FROM scratch; echo 'COPY b* .')...