From 0da0e3c7fc0a6228049c15ddf1a2caaa6a998779 Mon Sep 17 00:00:00 2001 From: Julian Mutter Date: Thu, 4 Jun 2026 17:45:02 +0200 Subject: [PATCH] Remove devenv from dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 510854d..5cf7e63 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ RUN mkdir -p /etc/nix && \ echo "experimental-features = nix-command flakes" >> /etc/nix/nix.conf # Install devenv (the Nix way, not the apt-get way) -RUN nix profile add nixpkgs#devenv && \ - nix-collect-garbage -d +# RUN nix profile add nixpkgs#devenv && \ +# nix-collect-garbage -d CMD ["/bin/bash"]