You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The legacy $ docker build ... command doesn't produce a manifest list (= "multi-arch image")
The new $ docker buildx build ... command produces a manifest list but is rigid in how it works.. there's not a lot of headroom to inject custom stuff in there such as ORAS artifacts. The result of that build is already pushed (= published) to the registry.
Ideally we'd assemble a manifest list ourselves and push that to the registry.
We'd be able to build the manifest list out of pieces:
multi-arch images built by $ docker buildx build ...
related ORAS-formatted "images"
documentation website
unit test reports
...
The text was updated successfully, but these errors were encountered:
Why at lower level?
The legacy
$ docker build ...
command doesn't produce a manifest list (= "multi-arch image")The new
$ docker buildx build ...
command produces a manifest list but is rigid in how it works.. there's not a lot of headroom to inject custom stuff in there such as ORAS artifacts. The result of that build is already pushed (= published) to the registry.Ideally we'd assemble a manifest list ourselves and push that to the registry.
We'd be able to build the manifest list out of pieces:
$ docker buildx build ...
The text was updated successfully, but these errors were encountered: