Merge pull request #298239 from cdepillabout/layered-img-passthru

dockerTools: add streamed image as passthru to buildLayeredImage
This commit is contained in:
Pol Dellaiera
2024-03-23 22:13:18 +01:00
committed by GitHub
+1 -1
View File
@@ -523,7 +523,7 @@ rec {
runCommand "${baseNameOf name}.tar${compress.ext}"
{
inherit (stream) imageName;
passthru = { inherit (stream) imageTag; };
passthru = { inherit (stream) imageTag; inherit stream; };
nativeBuildInputs = compress.nativeInputs;
} "${stream} | ${compress.compress} > $out"
);