]> git.immae.eu Git - github/fretlink/docker-nix.git/blame - README.md
Update README.md with build and hub badges
[github/fretlink/docker-nix.git] / README.md
CommitLineData
89f0519e
P
1## Nix package manager Docker Image
2
9271ece7
P
3[![Build Status](https://travis-ci.com/fretlink/docker-nix.svg?branch=master)](https://travis-ci.com/fretlink/docker-nix) [![Docker Hub](https://img.shields.io/badge/docker-fretlink%2Fnix-blue.svg?style=flat)](https://registry.hub.docker.com/u/fretlink/nix/)
4
89f0519e
P
5This image contains an installation of the [Nix package manager](https://nixos.org/nix/) installed as a single-user `nixuser`.
6
7This is based on the unpublished Dockerfile of https://github.com/romcheck/nix.
8
9Use this build to create your own customized images as follows:
10
11 FROM fretlink/nix
12
13 RUN nix-channel --add https://nixos.org/channels/nixpkgs-unstable nixpkgs
14 RUN nix-channel --update
15
16 RUN nix-build -A pythonFull '<nixpkgs>'