nix-samples/poc-oci/default.nix

18 lines
361 B
Nix
Raw Permalink Normal View History

2024-03-22 15:51:40 +01:00
{
pkgs ? import <nixpkgs> {},
}:
let
manifests = pkgs.writeText "bla" ''
here be dragons
'';
in
pkgs.dockerTools.streamLayeredImage {
name = "blah";
includeStorePaths = false;
fakeRootCommands = ''
cp -Lr ${manifests} my-text-file
cat my-text-file
rm -fr nix
'';
}