diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 9a7e94f..ce6a024 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -3,9 +3,6 @@ ARG USERNAME=sumcol RUN apt update -y && apt upgrade -y && apt install -y \ build-essential \ - zsh \ - fish \ - neovim \ sudo \ curl \ git \ @@ -19,4 +16,9 @@ USER $USERNAME # Install Rust ENV SHELL /bin/bash RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y -RUN . $HOME/.cargo/env && cargo install ripgrep fd-find \ No newline at end of file +RUN . $HOME/.cargo/env && cargo install ripgrep fd-find + +# Install Homebrew +RUN NONINTERACTIVE=1 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" +RUN eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)" +RUN NONINTERACTIVE=1 brew install neovim fish \ No newline at end of file