dockerImage: fix root shell
Currently root's shell is set to a path that does not exist; this change sets it to the correct path to bash
This commit is contained in:
parent
88a45d6149
commit
02af02854d
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ let
|
|||
|
||||
root = {
|
||||
uid = 0;
|
||||
shell = "/bin/bash";
|
||||
shell = "${pkgs.bashInteractive}/bin/bash";
|
||||
home = "/root";
|
||||
gid = 0;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue