aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..d1f7241
--- /dev/null
+++ b/README.md
@@ -0,0 +1,14 @@
1## Nix package manager Docker Image
2
3This image contains an installation of the [Nix package manager](https://nixos.org/nix/) installed as a single-user `nixuser`.
4
5This is based on the unpublished Dockerfile of https://github.com/romcheck/nix.
6
7Use 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>'