From 81cf1c31b680f8b02a9f081479a02e52d605ae52 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Mon, 17 May 2021 12:08:58 +0200 Subject: [PATCH] update to Nix 2.3.11 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f2cd10c..bf58677 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ RUN apk add --no-cache --update openssl \ && echo hosts: files dns > /etc/nsswitch.conf # Download Nix and install it into the system. -ARG NIX_VERSION=2.3.10 +ARG NIX_VERSION=2.3.11 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 \