From bf114bcc21e17d405e1077729520fce2ad2ebb9d Mon Sep 17 00:00:00 2001 From: LangLangBart <92653266+LangLangBart@users.noreply.github.com> Date: Fri, 5 Jun 2026 05:11:44 +0200 Subject: [PATCH] test: install nushell in Dockerfile ref: https://docs.docker.com/reference/dockerfile/#here-documents --- Dockerfile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9b8cd74b..17b78f21 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,15 @@ FROM rubylang/ruby:3.4.1-noble -RUN apt-get update -y && apt install -y git make golang zsh fish tmux +RUN apt-get update && apt-get install -y git make golang zsh fish tmux + +# https://www.nushell.sh/book/installation.html +RUN <> ~/.bashrc RUN echo '. ~/.bashrc' >> ~/.bash_profile