Adding an extend example (helm+oci)

This commit is contained in:
2024-03-24 09:33:05 +01:00
parent 6f0834519e
commit 78894bd3b1
5 changed files with 60 additions and 4 deletions

View File

@ -0,0 +1,18 @@
{
pkgs,
lib,
localOutputs,
}:
pkgs.dockerTools.streamLayeredImage {
name = "oci-image";
includeStorePaths = false;
fakeRootCommands = ''
cp -Lr ${localOutputs.manifests}/* .
rm -fr nix
'';
# config.Entrypoint = ["${lib.getExe localOutputs.binaries.simple-package}"];
# contents = [
# pkgs.hello
# ];
}