Merge pull request #2142 from domenkozar/docker-2.0.1

Docker 2.0.1
This commit is contained in:
Eelco Dolstra 2018-05-10 11:56:41 +02:00 committed by GitHub
commit 5ba2b566a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 2 deletions

View file

@ -4,8 +4,8 @@ FROM alpine
RUN apk add --update openssl
# Download Nix and install it into the system.
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 \
RUN wget https://nixos.org/releases/nix/nix-2.0.2/nix-2.0.2-x86_64-linux.tar.bz2 \
&& echo "d0c2492d7d8f824e3b1ace15a1a58f64a0a8faacc59936ebedfe18905d982d7c nix-2.0.2-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 \

8
misc/docker/README.md Normal file
View file

@ -0,0 +1,8 @@
To update https://hub.docker.com/r/nixos/nix/
$ docker build . -t nixos/nix:2.0
$ docker tag nixos/nix:2.0 nixos/nix:latest
$ docker push nixos/nix:latest
$ docker push nixos/nix:2.0
Write access: @domenkozar