Files
nix-config/pkgs/test-docker.nix
2024-06-24 10:01:15 +02:00

10 lines
153 B
Nix

{ dockerTools, hello }:
dockerTools.buildLayeredImage {
name = "hello";
tag = "latest";
contents = [ hello ];
config.Cmd = [ "/bin/hello" ];
}