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
commit 3eb185d6d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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