10 lines
153 B
Nix
10 lines
153 B
Nix
{ dockerTools, hello }:
|
|
dockerTools.buildLayeredImage {
|
|
name = "hello";
|
|
tag = "latest";
|
|
|
|
contents = [ hello ];
|
|
|
|
config.Cmd = [ "/bin/hello" ];
|
|
}
|