aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorChristian Segundo2023-09-15 14:15:52 +0200
committerChristian Segundo2023-09-16 23:44:08 +0200
commit80a3b5a2f95a88d0dc9c2b2b85df08e91d0d91b8 (patch)
treedf0efeb79fedecac7d50b8dc41f02eeb01d4fe1f /Dockerfile
parent154cc4e34def359e2d486676a1055ee982b6cfcd (diff)
downloadnvim-80a3b5a2f95a88d0dc9c2b2b85df08e91d0d91b8.tar.gz
sorry
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile11
1 files changed, 6 insertions, 5 deletions
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