Skip to content

Commit 4b81d91

Browse files
committed
fix: use latest version of neovim in dogfood
1 parent df5cba1 commit 4b81d91

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

dogfood/Dockerfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,13 @@ RUN apt-get update --quiet && apt-get install --yes \
172172
RUN curl -L https://github.com/cli/cli/releases/download/v2.14.7/gh_2.14.7_linux_amd64.deb -o gh.deb && \
173173
dpkg -i gh.deb
174174

175+
# Install latest version of neovim
176+
# Required by tools like LunarVim
177+
RUN apt-get install -y software-properties-common && \
178+
add-apt-repository -y ppa:neovim-ppa/unstable && \
179+
apt-get update && \
180+
apt-get install -y neovim && \
181+
175182
# Install Lazygit
176183
# See https://github.com/jesseduffield/lazygit#ubuntu
177184
RUN LAZYGIT_VERSION=$(curl -s "https://api.github.com/repos/jesseduffield/lazygit/releases/latest" | grep '"tag_name":' | sed -E 's/.*"v*([^"]+)".*/\1/') && \

0 commit comments

Comments
 (0)