SOCI v2 support for Depot container builds
Depot container builds now support SOCI (Seekable OCI) v2. With a compatible runtime, containers start after downloading only the files they need instead of pulling the entire image first, cutting startup time for large images like CUDA or PyTorch.
Depot generates the SOCI v2 index at build time, so there's no separate post-push indexing pipeline. SOCI is opt-in via the --output flag:
depot build -t repo/image:tag --push \
--output type=image,soci=true,compression=gzip,force-compression=true,oci-mediatypes=true \
.See the announcement post for the full details.