]> git.immae.eu Git - github/fretlink/docker-nix.git/blob - README.md
Initial nix docker image
[github/fretlink/docker-nix.git] / README.md
1 ## Nix package manager Docker Image
2
3 This image contains an installation of the [Nix package manager](https://nixos.org/nix/) installed as a single-user `nixuser`.
4
5 This is based on the unpublished Dockerfile of https://github.com/romcheck/nix.
6
7 Use this build to create your own customized images as follows:
8
9 FROM fretlink/nix
10
11 RUN nix-channel --add https://nixos.org/channels/nixpkgs-unstable nixpkgs
12 RUN nix-channel --update
13
14 RUN nix-build -A pythonFull '<nixpkgs>'