From 29acb20846083e2385924001463627ec0f29ac10 Mon Sep 17 00:00:00 2001 From: Robert <54006783+babdor@users.noreply.github.com> Date: Mon, 17 Jun 2024 11:03:28 -0600 Subject: [PATCH] Moving from nix 2.20 -> 2.22. (#30) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index acf6e20..d706a11 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.20.0 +ARG NIX_VERSION=2.22.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 \