Skip to content
This repository was archived by the owner on Dec 16, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/docker
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7842cdd46626
Choose a base ref
...
head repository: NixOS/docker
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3a8d3774bec1
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 4, 2019

  1. Update to Nix version 2.3.

    Closes #10.
    
    Suggested-by: Harley Laue <losinggeneration@gmail.com>
    peti committed Oct 4, 2019
    Copy the full SHA
    3a8d377 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 Dockerfile
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -7,9 +7,9 @@ RUN apk add --no-cache --update openssl \
&& echo hosts: dns files > /etc/nsswitch.conf

# Download Nix and install it into the system.
RUN wget https://nixos.org/releases/nix/nix-2.2.1/nix-2.2.1-x86_64-linux.tar.bz2 \
&& echo "e229e28f250cad684c278c9007b07a24eb4ead239280c237ed2245871eca79e0 nix-2.2.1-x86_64-linux.tar.bz2" | sha256sum -c \
&& tar xjf nix-*-x86_64-linux.tar.bz2 \
RUN wget https://nixos.org/releases/nix/nix-2.3/nix-2.3-x86_64-linux.tar.xz \
&& echo "e43f6947d1f302b6193302889e7800f3e3dd4a650b6f929c668c894884a02701 nix-2.3-x86_64-linux.tar.xz" | sha256sum -c \
&& tar xf nix-2.3-x86_64-linux.tar.xz \
&& 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 /etc/nix \