From 37bb52eafd438ed13b893b18dad3d14e22944c9c Mon Sep 17 00:00:00 2001 From: GuelaKais <koroyeldiores@gmail.com> Date: Fri, 17 Nov 2023 20:45:27 +0100 Subject: [PATCH] added missing dependency for the neovide editor --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index ee1bf2c..676ae0e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,6 +26,8 @@ RUN echo 'source $HOME/.cargo/env' >> $HOME/.bashrc RUN cargo install cargo-outdated RUN cargo install maturin RUN cargo install evcxr_repl +RUN wget https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage +RUN chmod u+x nvim.appimage && ./nvim.appimage RUN git clone https://github.com/neovide/neovide WORKDIR /neovide RUN cargo build --release -- GitLab