From 71916da84888ec9d6cf032e7aa50fd4fe333e614 Mon Sep 17 00:00:00 2001 From: Bastien Riviere Date: Sat, 12 Oct 2024 18:56:54 +0200 Subject: [PATCH] feat: use elvish as default shell --- Containerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Containerfile b/Containerfile index d9a389d..4953d19 100644 --- a/Containerfile +++ b/Containerfile @@ -24,3 +24,5 @@ RUN ln -fs /bin/sh /usr/bin/sh && \ ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/podman && \ ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/rpm-ostree && \ ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/transactional-update + +RUN which elvish | tee -a /etc/shells && chsh -s $(which elvish)