2016-03-16 13:26:34 +01:00
|
|
|
FROM alpine
|
2015-07-16 22:20:18 +02:00
|
|
|
|
2017-09-08 13:34:08 +02:00
|
|
|
# Enable HTTPS support in wget.
|
|
|
|
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 - \
|
|
|
|
&& 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 \
|
|
|
|
&& ln -s /root/.nix-profile/etc/profile.d/nix.sh /etc/profile.d/ \
|
|
|
|
&& rm -r /nix-*-x86_64-linux \
|
|
|
|
&& rm -r /var/cache/apk/*
|
2015-07-16 22:20:18 +02:00
|
|
|
|
|
|
|
ONBUILD ENV \
|
|
|
|
ENV=/etc/profile \
|
|
|
|
PATH=/root/.nix-profile/bin:/root/.nix-profile/sbin:/bin:/sbin:/usr/bin:/usr/sbin \
|
2016-03-16 13:26:34 +01:00
|
|
|
GIT_SSL_CAINFO=/root/.nix-profile/etc/ssl/certs/ca-bundle.crt \
|
2016-10-13 17:09:10 +02:00
|
|
|
NIX_SSL_CERT_FILE=/root/.nix-profile/etc/ssl/certs/ca-bundle.crt
|
2015-07-16 22:20:18 +02:00
|
|
|
|
|
|
|
ENV \
|
|
|
|
ENV=/etc/profile \
|
|
|
|
PATH=/root/.nix-profile/bin:/root/.nix-profile/sbin:/bin:/sbin:/usr/bin:/usr/sbin \
|
2016-03-16 13:26:34 +01:00
|
|
|
GIT_SSL_CAINFO=/root/.nix-profile/etc/ssl/certs/ca-bundle.crt \
|
2016-10-13 17:09:10 +02:00
|
|
|
NIX_SSL_CERT_FILE=/root/.nix-profile/etc/ssl/certs/ca-bundle.crt \
|
2016-07-20 16:58:01 +02:00
|
|
|
NIX_PATH=/nix/var/nix/profiles/per-user/root/channels/
|