Merge pull request #7046 from mkenigs/fix-root-SHELL

dockerImage: fix root shell
This commit is contained in:
Théophane Hufschmitt
2022-09-24 12:53:46 +02:00
committed by GitHub

View File

@@ -33,7 +33,7 @@ let
root = {
uid = 0;
shell = "/bin/bash";
shell = "${pkgs.bashInteractive}/bin/bash";
home = "/root";
gid = 0;
};