diff options
author | Christian Segundo | 2023-09-15 14:15:52 +0200 |
---|---|---|
committer | Christian Segundo | 2023-09-16 23:44:08 +0200 |
commit | 80a3b5a2f95a88d0dc9c2b2b85df08e91d0d91b8 (patch) | |
tree | df0efeb79fedecac7d50b8dc41f02eeb01d4fe1f /Dockerfile | |
parent | 154cc4e34def359e2d486676a1055ee982b6cfcd (diff) | |
download | nvim-80a3b5a2f95a88d0dc9c2b2b85df08e91d0d91b8.tar.gz |
sorry
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -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 |