如何使用nix构建docker容器?

时间:2017-04-12 17:21:01

标签: docker nix

我有一个Nix包,我想捆绑到一个docker容器中。

具体来说,我想使用Nix作为Dockerfile更具表现力的替代方案,以获得更快(非线性)的图像构建。

我已经在dockerTools.buildImage找到了文档,但我想提供一个最小的工作示例,而且我也想知道什么最终会出现在docker容器中。< / p>

1 个答案:

答案 0 :(得分:15)

以下示例将contents = nixpkgs软件包(使用pkgs.nginx)打包到docker容器中:

docker load --input $(nix-build -E 'with import <nixpkgs> {}; pkgs.dockerTools.buildImage { name = "nix-htop"; contents = pkgs.htop; config = { Cmd = [ "/bin/htop" ]; }; }')

然后您可以使用

运行它
docker run -it nix-htop

容器的内容非常简单,只有一个Docker层:

docker save nix-htop | tar x --to-stdout --wildcards '*/layer.tar' | tar t --exclude="*/*/*/*"
./
./bin/
./bin/htop
./share/
./share/applications/
./share/man/
./share/pixmaps/
nix/
nix/store/
nix/store/gi5vvbjawzw1bakiksazbd50bvfmpmmc-ncurses-6.0/
nix/store/pa5nkrpd5hg5qp1dc4gmbd2vdhn1y3x2-htop-2.0.2/
nix/store/vn6fkjnfps37wa82ri4mwszwvnnan6sk-glibc-2.25/

只有htop及其依赖项(glibc,ncurses),我的案例为26 MB。