Skip to content

Commit

Permalink
update neovim version
Browse files Browse the repository at this point in the history
  • Loading branch information
tamago3keran committed Jun 17, 2023
1 parent fbdac75 commit 9719f23
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 20 deletions.
14 changes: 9 additions & 5 deletions base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@ FROM ubuntu:22.04

RUN apt update && \
apt-get update && \
apt install -y curl git ripgrep unzip vim wget

RUN wget https://github.com/neovim/neovim/releases/download/v0.8.2/nvim-linux64.deb && \
apt install ./nvim-linux64.deb && \
rm ./nvim-linux64.deb
apt install -y curl git ripgrep tar unzip vim wget

RUN wget https://github.com/neovim/neovim/releases/download/v0.9.1/nvim-linux64.tar.gz && \
tar -zxvf nvim-linux64.tar.gz && \
mv nvim-linux64/bin/nvim usr/bin/nvim && \
mv nvim-linux64/lib/nvim usr/lib/nvim && \
mv nvim-linux64/share/nvim/ usr/share/nvim && \
rm -rf nvim-linux64 && \
rm nvim-linux64.tar.gz

RUN wget https://raw.githubusercontent.com/Shougo/dein-installer.vim/master/installer.sh && \
sh installer.sh '~/.local/share/dein' --use-neovim-config && \
Expand Down
14 changes: 9 additions & 5 deletions dotfiles/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@ FROM ubuntu:22.04

RUN apt update && \
apt-get update && \
apt install -y curl git ripgrep unzip vim wget

RUN wget https://github.com/neovim/neovim/releases/download/v0.8.2/nvim-linux64.deb && \
apt install ./nvim-linux64.deb && \
rm ./nvim-linux64.deb
apt install -y curl git ripgrep tar unzip vim wget

RUN wget https://github.com/neovim/neovim/releases/download/v0.9.1/nvim-linux64.tar.gz && \
tar -zxvf nvim-linux64.tar.gz && \
mv nvim-linux64/bin/nvim usr/bin/nvim && \
mv nvim-linux64/lib/nvim usr/lib/nvim && \
mv nvim-linux64/share/nvim/ usr/share/nvim && \
rm -rf nvim-linux64 && \
rm nvim-linux64.tar.gz

RUN wget https://raw.githubusercontent.com/Shougo/dein-installer.vim/master/installer.sh && \
sh installer.sh '~/.local/share/dein' --use-neovim-config && \
Expand Down
14 changes: 9 additions & 5 deletions react/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@ FROM ubuntu:22.04

RUN apt update && \
apt-get update && \
apt install -y curl git ripgrep unzip vim wget

RUN wget https://github.com/neovim/neovim/releases/download/v0.8.2/nvim-linux64.deb && \
apt install ./nvim-linux64.deb && \
rm ./nvim-linux64.deb
apt install -y curl git ripgrep tar unzip vim wget

RUN wget https://github.com/neovim/neovim/releases/download/v0.9.1/nvim-linux64.tar.gz && \
tar -zxvf nvim-linux64.tar.gz && \
mv nvim-linux64/bin/nvim usr/bin/nvim && \
mv nvim-linux64/lib/nvim usr/lib/nvim && \
mv nvim-linux64/share/nvim/ usr/share/nvim && \
rm -rf nvim-linux64 && \
rm nvim-linux64.tar.gz

RUN wget https://raw.githubusercontent.com/Shougo/dein-installer.vim/master/installer.sh && \
sh installer.sh '~/.local/share/dein' --use-neovim-config && \
Expand Down
14 changes: 9 additions & 5 deletions ruby/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@ FROM ubuntu:22.04

RUN apt update && \
apt-get update && \
apt install -y curl git ripgrep unzip vim wget

RUN wget https://github.com/neovim/neovim/releases/download/v0.8.2/nvim-linux64.deb && \
apt install ./nvim-linux64.deb && \
rm ./nvim-linux64.deb
apt install -y curl git ripgrep tar unzip vim wget

RUN wget https://github.com/neovim/neovim/releases/download/v0.9.1/nvim-linux64.tar.gz && \
tar -zxvf nvim-linux64.tar.gz && \
mv nvim-linux64/bin/nvim usr/bin/nvim && \
mv nvim-linux64/lib/nvim usr/lib/nvim && \
mv nvim-linux64/share/nvim/ usr/share/nvim && \
rm -rf nvim-linux64 && \
rm nvim-linux64.tar.gz

RUN wget https://raw.githubusercontent.com/Shougo/dein-installer.vim/master/installer.sh && \
sh installer.sh '~/.local/share/dein' --use-neovim-config && \
Expand Down

0 comments on commit 9719f23

Please sign in to comment.