Comment This targets the wrong people (Score 1) 24
It seems, that the parties involved were unable to fulfill that level and rather removed it than having to admit that they are not up to date with their processes.
Note, that Open Build Service actually allows to build container images. There is one caveat though, the SUSE people supported the two-person review and hermetic, reproducible build process since a long time, the only thing they had to add was the attestation, and obviously that was quickly done. Current Dockerfiles and other Image generators however need online access - be it for stupid little programs like gosu, or maybe, because the build requires to check some git release. This cannot work with a hermetic build, and it is definitly not reproducable. This means, that in order to create container images with OBS, you typically have to rewrite the Dockerfile in a way, that makes it independent from Internet, and you also have to provide all needed artifacts within OBS upfront.
After having done that task, you get quite some benefits in turn: Your container images are rebuilt whenever needed (OBS knows every artifact that is used, and when one is updated, it rebuilds the container image). You get automatic attestation and full SBOM. You also automatically have gpg-signed images. You can even create your own base image if you like -- and you can use basically every major distribution to create your container images, all of this fully automated and on your private instance of OBS (which is GPL) if you like.
So, what is the right people to target? It is those, who provide the Software and the Dockerfiles. If they require network access for building, any security is compromised upfront. Unfortunately, this is standard today, although a bad one.