From 3db60145ea10003260f5eeb2e607cd25d1e06a2c Mon Sep 17 00:00:00 2001 From: Joao P Dubas Date: Mon, 2 Oct 2023 00:04:36 +0000 Subject: [PATCH] fix: set shell env var to bash This is needed to install elixir lsp. --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 6e648d9..7766cf1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -125,6 +125,8 @@ ENV XDG_DATA_HOME ${HOME}/.local/share ENV XDG_CACHE_HOME ${HOME}/.cache ENV STARSHIP_CONFIG ${XDG_CONFIG_HOME}/starship/config.toml ENV PATH ${LOCAL_BIN_HOME}:$PATH +# NOTE (jpd): to install elixirls we have to set the shell to something known +ENV SHELL /usr/bin/bash # command line utilities RUN curl https://rtx.pub/install.sh | sh \