From 7c175c7534e44a1163e591d899b922ce52fc0a23 Mon Sep 17 00:00:00 2001 From: Mathew Richmond Date: Mon, 11 Mar 2024 11:31:29 -0600 Subject: [PATCH] Update to nix 2.20 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 76f86bc..acf6e20 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM buildpack-deps:jammy # Download Nix and install it into the system. -ARG NIX_VERSION=2.19.0 +ARG NIX_VERSION=2.20.0 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 --system --gid 30000 nixbld \