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
In the past week or so the media type for python:3.10-slim-bookworm has changed to "application/vnd.oci.image.index.v1+json". I believe it used to be "application/vnd.docker.distribution.manifest.list.v2+json" which is what the base imagedebian:bookworm-slim shows:
Is this intended and if so what was the reason for changing the media types? We currently have several Vertex AI pipelines that use the Python images which are failing due to this issue
{
"errors": [{
"code": "MANIFEST_UNKNOWN",
"message": "Manifest has media type \"application/vnd.oci.image.manifest.v1+json\" but client accepts [\"application/vnd.docker.distribution.manifest.v2+json,application/vnd.docker.distribution.manifest.v1+json,application/vnd.docker.distribution.manifest.v1+prettyjws\"]"
}]
}
Thank you.
The text was updated successfully, but these errors were encountered:
Yes, this was intentional. We are in a slow, but active process of migrating all of Official Images builds from the classic docker build to the docker build backed by buildkit. Python is one that was added recently. Many of the images in Docker Official Images are now built using buildkit and use these "newer" oci media types; eventually all of them will be.
In the past week or so the media type for
python:3.10-slim-bookworm
has changed to"application/vnd.oci.image.index.v1+json"
. I believe it used to be"application/vnd.docker.distribution.manifest.list.v2+json"
which is what the base imagedebian:bookworm-slim
shows:Is this intended and if so what was the reason for changing the media types? We currently have several Vertex AI pipelines that use the Python images which are failing due to this issue
Thank you.
The text was updated successfully, but these errors were encountered: