13 lines
No EOL
233 B
Nix
13 lines
No EOL
233 B
Nix
{
|
|
pkgs ? import <nixpkgs> {},
|
|
pkgs_linux ? import <nixpkgs> { system = "x86_64-linux"; },
|
|
}:
|
|
|
|
pkgs.dockerTools.buildImage {
|
|
name = "default";
|
|
tag = "latest";
|
|
|
|
config = {
|
|
Cmd = [ "${pkgs_linux.hello}/bin/hello" ];
|
|
};
|
|
} |