aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThéophane Hufschmitt <7226587+thufschmitt@users.noreply.github.com>2022-09-24 12:53:46 +0200
committerGitHub <noreply@github.com>2022-09-24 12:53:46 +0200
commit3eb185d6d14d42943cd851f423d125609ca910ea (patch)
tree7aee58eac83e14684d99be773a0bd170d938fd8f
parentdb29ddd113a8c1eb5ebe1e050a836c8e882996d0 (diff)
parent02af02854d41b390957300bac778139bc1c6b5c2 (diff)
Merge pull request #7046 from mkenigs/fix-root-SHELL
dockerImage: fix root shell
-rw-r--r--docker.nix2
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;
};