From 80a3b5a2f95a88d0dc9c2b2b85df08e91d0d91b8 Mon Sep 17 00:00:00 2001 From: Christian Segundo Date: Fri, 15 Sep 2023 14:15:52 +0200 Subject: sorry --- Dockerfile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index 4425b2c..87f1258 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,6 @@ FROM alpine:latest -ARG NEOVIM_VERSION=v0.8.0 - -WORKDIR /tmp/nvim +ARG NEOVIM_VERSION=v0.9.2 RUN apk --no-cache add \ autoconf \ @@ -16,11 +14,14 @@ RUN apk --no-cache add \ git \ libtool \ pkgconf \ - unzip + unzip \ + wget SHELL ["/bin/bash", "-o", "pipefail", "-c"] +WORKDIR /tmp/nvim RUN git clone --depth 1 --branch ${NEOVIM_VERSION} https://github.com/neovim/neovim && \ cd neovim && \ make CMAKE_BUILD_TYPE=Release && \ - make install + make install && \ + rm -rf /tmp/nvim -- cgit v1.2.3