From 29bc255f0f99c4f63e687b407474a1b65cdd980e Mon Sep 17 00:00:00 2001 From: HaimKortovich Date: Tue, 14 Apr 2026 14:26:31 -0500 Subject: [PATCH] use busybox instead of bash --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index e5855df..ea26888 100644 --- a/flake.nix +++ b/flake.nix @@ -32,7 +32,7 @@ }; dockerImage = pkgs.dockerTools.buildLayeredImage { name = "policy_service"; - contents = [ package pkgs.bashInteractive pkgs.shadow ]; + contents = [ package pkgs.busybox pkgs.shadow ]; config = { Cmd = [ "${package}/bin/policy_service" "start" ]; Entrypoint = [ "/bin/sh" ];