From 7cc03ca81cc2c1b497087e00f0a1049a28538f5c Mon Sep 17 00:00:00 2001 From: Brian Cole Date: Tue, 9 Nov 2021 11:06:32 -0500 Subject: [PATCH] nix 2.4 bump NIX_VERSION from 2.3.15 to 2.4 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0aa9086..e5e6fec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ RUN apk add --no-cache --update openssl git \ && echo hosts: files dns > /etc/nsswitch.conf # Download Nix and install it into the system. -ARG NIX_VERSION=2.3.15 +ARG NIX_VERSION=2.4 RUN wget https://nixos.org/releases/nix/nix-${NIX_VERSION}/nix-${NIX_VERSION}-$(uname -m)-linux.tar.xz \ && tar xf nix-${NIX_VERSION}-$(uname -m)-linux.tar.xz \ && addgroup -g 30000 -S nixbld \