Skip to content
This repository has been archived by the owner on Dec 16, 2021. It is now read-only.
/ docker Public archive
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: d0ffacd798e5
Choose a base ref
...
head repository: NixOS/docker
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ed065ff4bdc1
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 15, 2018

  1. Bump to Nix 2.1.3

    domenkozar committed Oct 15, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    domenkozar Domen Kožar
    Copy the full SHA
    c7ad85d View commit details
  2. Merge pull request #4 from NixOS/2.1.3

    Bump to Nix 2.1.3
    domenkozar authored Oct 15, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    ed065ff View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 Dockerfile
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -6,8 +6,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.1.1/nix-2.1.1-x86_64-linux.tar.bz2 \
&& echo "ad10b4da69035a585fe89d7330037c4a5d867a372bb0e52a1542ab95aec67999 nix-2.1.1-x86_64-linux.tar.bz2" | sha256sum -c \
RUN wget https://nixos.org/releases/nix/nix-2.1.3/nix-2.1.3-x86_64-linux.tar.bz2 \
&& echo "3169d05aa713f6ffa774f001cae133557d3ad72e23d9b6f6ebbddd77b477304f nix-2.1.3-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 \