From 81b107cf87a0fdbad29c7613b058c8cba223c51b Mon Sep 17 00:00:00 2001 From: Damyan Yordanov Date: Mon, 29 Jan 2024 13:08:09 +0100 Subject: [PATCH] Install starshell (https://starship.rs) in the base container (#23) --- base/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/base/Dockerfile b/base/Dockerfile index 4f053f7..4f223da 100644 --- a/base/Dockerfile +++ b/base/Dockerfile @@ -31,6 +31,8 @@ RUN mkdir -p ~/.ssh && ssh-keyscan github.com >> ~/.ssh/known_hosts ENV TZ=Europe/Berlin +RUN curl -sS https://starship.rs/install.sh > install.sh +RUN sh install.sh -y # install dot tools WORKDIR "/home/damyan" @@ -39,7 +41,6 @@ USER damyan RUN git clone https://github.com/damyan/dotfiles.git .dotfiles && cd .dotfiles && ./install_dot_files.sh - # install yq WORKDIR "/root"