From 41ee4161a94473b32ff7c392d761aacc76fb29b3 Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Fri, 20 Feb 2026 10:54:40 -0800 Subject: [PATCH] Add coreutils to authentik container The ak wrapper script requires mkdir (and likely other coreutils) to create runtime directories. Co-Authored-By: Claude Opus 4.6 --- containers/authentik/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/containers/authentik/default.nix b/containers/authentik/default.nix index dce6116..c950d08 100644 --- a/containers/authentik/default.nix +++ b/containers/authentik/default.nix @@ -10,6 +10,7 @@ pkgs.dockerTools.buildLayeredImage { contents = [ pkgs.authentik pkgs.bashInteractive + pkgs.coreutils pkgs.cacert pkgs.tzdata ];