diff options
author | Théophane Hufschmitt <7226587+thufschmitt@users.noreply.github.com> | 2022-09-24 12:53:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-24 12:53:46 +0200 |
commit | 3eb185d6d14d42943cd851f423d125609ca910ea (patch) | |
tree | 7aee58eac83e14684d99be773a0bd170d938fd8f /docker.nix | |
parent | db29ddd113a8c1eb5ebe1e050a836c8e882996d0 (diff) | |
parent | 02af02854d41b390957300bac778139bc1c6b5c2 (diff) |
Merge pull request #7046 from mkenigs/fix-root-SHELL
dockerImage: fix root shell
Diffstat (limited to 'docker.nix')
-rw-r--r-- | docker.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker.nix b/docker.nix index e95caf274..bb2b4e7ff 100644 --- a/docker.nix +++ b/docker.nix @@ -33,7 +33,7 @@ let root = { uid = 0; - shell = "/bin/bash"; + shell = "${pkgs.bashInteractive}/bin/bash"; home = "/root"; gid = 0; }; |