diff options
author | Hussein Ait-Lahcen <hussein.ait-lahcen@fretlink.com> | 2019-03-22 11:34:32 +0100 |
---|---|---|
committer | Hussein Ait-Lahcen <hussein.ait-lahcen@fretlink.com> | 2019-03-22 12:33:39 +0100 |
commit | e6f85a810ddb2986cd7aa2124d4b140c3d7941a2 (patch) | |
tree | ff88acc7bdf694f12c0195e8011440a704108e2d /debian/Dockerfile | |
parent | 4d15def706c2573bc6cabdda75deb15b8ee76c5e (diff) | |
download | docker-nix-e6f85a810ddb2986cd7aa2124d4b140c3d7941a2.tar.gz docker-nix-e6f85a810ddb2986cd7aa2124d4b140c3d7941a2.tar.zst docker-nix-e6f85a810ddb2986cd7aa2124d4b140c3d7941a2.zip |
chore(nix-cli): upgrade from 2.1.3 to 2.2.1
Diffstat (limited to 'debian/Dockerfile')
-rw-r--r-- | debian/Dockerfile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/debian/Dockerfile b/debian/Dockerfile index d8e9b97..f7034d2 100644 --- a/debian/Dockerfile +++ b/debian/Dockerfile | |||
@@ -2,7 +2,7 @@ | |||
2 | FROM debian:stable-slim | 2 | FROM debian:stable-slim |
3 | 3 | ||
4 | ARG NIX_VERSION | 4 | ARG NIX_VERSION |
5 | ENV NIX_VERSION ${NIX_VERSION:-2.1.3} | 5 | ENV NIX_VERSION ${NIX_VERSION:-2.2.1} |
6 | ARG LANG | 6 | ARG LANG |
7 | ENV LANG ${LANG:-"en_US.UTF-8"} | 7 | ENV LANG ${LANG:-"en_US.UTF-8"} |
8 | 8 | ||
@@ -11,7 +11,9 @@ RUN addgroup --gid 30000 --system nixbld \ | |||
11 | && adduser --disabled-password nixuser \ | 11 | && adduser --disabled-password nixuser \ |
12 | && mkdir -m 0755 /nix && chown nixuser /nix \ | 12 | && mkdir -m 0755 /nix && chown nixuser /nix \ |
13 | && apt update && apt install -y wget bzip2 \ | 13 | && apt update && apt install -y wget bzip2 \ |
14 | && apt clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | 14 | && apt clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \ |
15 | # sandboxing enabled by default since 2.2 | ||
16 | && mkdir -p /etc/nix && echo 'sandbox = false' > /etc/nix/nix.conf | ||
15 | 17 | ||
16 | USER nixuser | 18 | USER nixuser |
17 | ENV USER=nixuser | 19 | ENV USER=nixuser |