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: ed065ff4bdc1
Choose a base ref
...
head repository: NixOS/docker
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ded762e17ff4
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Nov 2, 2018

  1. Check and garbage collect the Nix store after the installation.

    First, run "nix-collect-garbage --delete-old" to clean out all unnecessary
    files, then "nix-store --verify --check-contents" the result.
    peti committed Nov 2, 2018
    Copy the full SHA
    22f17e0 View commit details
  2. Run "apk add" with "--no-cache" option.

    Suggested by @domenkozar in #5. With this
    change, /var/cache/apk is empty at the time we try to clean it, so we must use
    --force to prevent the build from failing.
    peti committed Nov 2, 2018
    Copy the full SHA
    ded762e View commit details
Showing with 4 additions and 2 deletions.
  1. +4 −2 Dockerfile
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
FROM alpine

# Enable HTTPS support in wget.
RUN apk add --update openssl
RUN apk add --no-cache --update openssl

# Download Nix and install it into the system.
RUN wget https://nixos.org/releases/nix/nix-2.1.3/nix-2.1.3-x86_64-linux.tar.bz2 \
@@ -14,7 +14,9 @@ RUN wget https://nixos.org/releases/nix/nix-2.1.3/nix-2.1.3-x86_64-linux.tar.bz2
&& mkdir -m 0755 /nix && USER=root sh nix-*-x86_64-linux/install \
&& ln -s /nix/var/nix/profiles/default/etc/profile.d/nix.sh /etc/profile.d/ \
&& rm -r /nix-*-x86_64-linux* \
&& rm -r /var/cache/apk/*
&& rm -rf /var/cache/apk/* \
&& /nix/var/nix/profiles/default/bin/nix-collect-garbage --delete-old \
&& /nix/var/nix/profiles/default/bin/nix-store --verify --check-contents

ONBUILD ENV \
ENV=/etc/profile \