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
feat(build): COPY --from=<external image> pulls and copies from that image
Docker resolves COPY --from=<ref> as an external image when <ref> is neither a
stage alias nor index, pulling it and copying from its rootfs; a3s-box errored
'stage not found'. The COPY handler (in the async build loop) now falls back to
pulling the image and extracting it to a temp rootfs (memoized per build so
several copies from one image pull once) when the stage lookup fails. Verified
on Linux: COPY --from=alpine /etc/alpine-release copies the file (3.23.4).
0 commit comments