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
fix(sandbox): correct image digest comparison and variable ordering
The remote digest check used --format "{{.Manifest.Digest}}" which
silently falls back to pretty-printed output for multi-arch OCI image
indexes, causing the pull to always re-trigger. Hash the raw manifest
bytes with sha256sum to match how registries compute digests.
Also guard local digest retrieval with "|| true" so set -e / pipefail
does not kill the script when the image is not yet cached locally, and
hoist the WORKSPACE_NAME derivation above the volume flags block where
it is first referenced.
0 commit comments