Dockerfile (431B)
1 FROM ubuntu:latest 2 3 RUN <<EOF 4 apt-get update 5 apt-get install -y curl git gcc 6 EOF 7 8 RUN <<EOF 9 curl -LO https://github.com/neovim/neovim/releases/download/nightly/nvim-linux-x86_64.tar.gz 10 rm -rf /opt/nvim 11 tar -C /opt -xzf nvim-linux-x86_64.tar.gz 12 EOF 13 14 ENV PATH="$PATH:/opt/nvim-linux-x86_64/bin" 15 16 RUN <<EOF 17 mkdir ~/.config 18 git clone git://gtms.dev/neovim ~/.config/nvim 19 EOF 20 21 RUN nvim --headless -u NONE -c 'lua require("bootstrap")' 22