linuxkit-nix/example.nix

7 lines
203 B
Nix
Raw Normal View History

2018-04-03 14:54:09 +03:00
with (import <nixpkgs> { }).forceSystem "x86_64-linux" "x86_64";
dockerTools.buildImage {
2018-04-10 21:53:42 +03:00
name = "linuxkit-builder-example-${toString builtins.currentTime}";
contents = [ hello gitAndTools.tig ];
2018-04-03 14:54:09 +03:00
}