Merge pull request #36352 from nlewo/pr-onTopOfPulledImage

Add dockerTools test: on top of pulled image
This commit is contained in:
lewo
2018-03-13 13:34:25 +01:00
committed by GitHub
2 changed files with 22 additions and 4 deletions

View File

@@ -116,4 +116,12 @@ rec {
Env = [ "NIX_PAGER=cat" ];
};
};
# 7. example of adding something on top of an image pull by our
# dockerTools chain.
onTopOfPulledImage = buildImage {
name = "onTopOfPulledImage";
fromImage = nixFromDockerHub;
contents = [ pkgs.hello ];
};
}