aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
blob: d1f7241d1a2ba3b6a23063007b059f3252f2c866 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
## Nix package manager Docker Image

This image contains an installation of the [Nix package manager](https://nixos.org/nix/) installed as a single-user `nixuser`.

This is based on the unpublished Dockerfile of https://github.com/romcheck/nix.

Use this build to create your own customized images as follows:

    FROM fretlink/nix

    RUN nix-channel --add https://nixos.org/channels/nixpkgs-unstable nixpkgs
    RUN nix-channel --update

    RUN nix-build -A pythonFull '<nixpkgs>'