diff options
author | Shea Levy <shea@shealevy.com> | 2018-03-19T14·13-0400 |
---|---|---|
committer | Shea Levy <shea@shealevy.com> | 2018-03-19T14·13-0400 |
commit | ae299ab47a6170fb880f962c256991a9a205ceaf (patch) | |
tree | 8756f75c9448ee03ba72e26a6054f569f3f0fab5 | |
parent | 44a1b6c0264556d2bc7ac312728421342d92490a (diff) | |
parent | a74288b9439153d17df8486230185c7e6b2b588b (diff) |
Merge branch 'master' of git://github.com/bchallenor/nix
-rw-r--r-- | misc/docker/Dockerfile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/misc/docker/Dockerfile b/misc/docker/Dockerfile index d6b88c7e91a5..2f8e3dd7a679 100644 --- a/misc/docker/Dockerfile +++ b/misc/docker/Dockerfile @@ -4,7 +4,9 @@ FROM alpine RUN apk add --update openssl # Download Nix and install it into the system. -RUN wget -O- https://nixos.org/releases/nix/nix-1.11.14/nix-1.11.14-x86_64-linux.tar.bz2 | bzcat - | tar xf - \ +RUN wget https://nixos.org/releases/nix/nix-2.0/nix-2.0-x86_64-linux.tar.bz2 \ + && echo "6312837aee33306cdbb351b75ba1638b89d21b30f0caf0346f9a742425f197ee nix-2.0-x86_64-linux.tar.bz2" | sha256sum -c \ + && tar xjf nix-*-x86_64-linux.tar.bz2 \ && addgroup -g 30000 -S nixbld \ && for i in $(seq 1 30); do adduser -S -D -h /var/empty -g "Nix build user $i" -u $((30000 + i)) -G nixbld nixbld$i ; done \ && mkdir -m 0755 /nix && USER=root sh nix-*-x86_64-linux/install \ |