]> git.immae.eu Git - github/fretlink/docker-nix.git/commitdiff
chore(nix-cli): upgrade from 2.1.3 to 2.2.1
authorHussein Ait-Lahcen <hussein.ait-lahcen@fretlink.com>
Fri, 22 Mar 2019 10:34:32 +0000 (11:34 +0100)
committerHussein Ait-Lahcen <hussein.ait-lahcen@fretlink.com>
Fri, 22 Mar 2019 11:33:39 +0000 (12:33 +0100)
alpine/Dockerfile
debian/Dockerfile

index 952e3eadb8699f38ffe36a1b5402ace49c6f1f2d..c5d07b29832ac40a90e4701e15ebde9018bf54f2 100644 (file)
@@ -2,7 +2,7 @@
 FROM alpine
 
 ARG NIX_VERSION
-ENV NIX_VERSION ${NIX_VERSION:-2.1.3}
+ENV NIX_VERSION ${NIX_VERSION:-2.2.1}
 ARG LANG
 ENV LANG ${LANG:-"en_US.UTF-8"}
 
@@ -11,7 +11,9 @@ RUN addgroup -g 30000 -S nixbld \
     && adduser -D nixuser \
     && mkdir -m 0755 /nix && chown nixuser /nix \
     && apk add --no-cache bash \
-    && rm -rf /var/cache/apk/*
+    && rm -rf /var/cache/apk/* \
+    # sandboxing enabled by default since 2.2
+    && mkdir -p /etc/nix && echo 'sandbox = false' > /etc/nix/nix.conf
 
 USER nixuser
 ENV USER=nixuser
index d8e9b97f3d5b3014b337107dd556263a63f36b4c..f7034d281a5a256a0fc6acc74763712f394d7db3 100644 (file)
@@ -2,7 +2,7 @@
 FROM debian:stable-slim
 
 ARG NIX_VERSION
-ENV NIX_VERSION ${NIX_VERSION:-2.1.3}
+ENV NIX_VERSION ${NIX_VERSION:-2.2.1}
 ARG LANG
 ENV LANG ${LANG:-"en_US.UTF-8"}
 
@@ -11,7 +11,9 @@ RUN addgroup --gid 30000 --system nixbld \
     && adduser --disabled-password nixuser \
     && mkdir -m 0755 /nix && chown nixuser /nix \
     && apt update && apt install -y wget bzip2 \
-    && apt clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
+    && apt clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
+    # sandboxing enabled by default since 2.2
+    && mkdir -p /etc/nix && echo 'sandbox = false' > /etc/nix/nix.conf
 
 USER nixuser
 ENV USER=nixuser