fix: preload runtime image rewrites

This commit is contained in:
Codex
2026-06-27 13:41:21 +00:00
parent 1d72f94a37
commit 241e2e9591
+3
View File
@@ -818,6 +818,9 @@ function nodeRuntimeImageDependencies(spec: HwlabRuntimeLaneSpec): NodeRuntimeIm
if (spec.buildkit !== undefined) {
images.push({ id: "buildkit", target: spec.buildkit.sidecarImage, source: spec.buildkit.sourceImage });
}
spec.runtimeImageRewrites.forEach((rewrite, index) => {
images.push({ id: `rewrite-${index + 1}`, target: rewrite.target, source: rewrite.source });
});
return images;
}