diff options
author | Christian Segundo | 2024-04-07 21:39:46 +0200 |
---|---|---|
committer | Christian Segundo | 2024-04-07 21:39:46 +0200 |
commit | 61040f382eb7e5a61f8a12ddf5147a5a4556b923 (patch) | |
tree | f32ead3b5dcb29bbd61f5f996f0134a70388c7eb /Dockerfile | |
parent | 76a08088a70fcb26bf85a98c562be5fbb92b229a (diff) | |
download | nvim-61040f382eb7e5a61f8a12ddf5147a5a4556b923.tar.gz |
update readme
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index a9cc343..0000000 --- a/Dockerfile +++ /dev/null @@ -1,33 +0,0 @@ -# hadolint ignore=DL3007 -FROM alpine:latest - -ARG NEOVIM_VERSION=- - -# hadolint ignore=DL3018 -RUN echo "@testing https://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories && \ - apk update && \ - apk --no-cache add \ - autoconf \ - automake \ - bash \ - build-base \ - cmake \ - coreutils \ - curl \ - gettext-tiny-dev \ - git \ - libtool \ - lua-language-server@testing \ - luacheck \ - pkgconf \ - stylua \ - unzip \ - wget - -SHELL ["/bin/bash", "-o", "pipefail", "-c"] - -WORKDIR /tmp/nvim -RUN git clone --depth 1 --branch ${NEOVIM_VERSION} https://github.com/neovim/neovim . && \ - make CMAKE_BUILD_TYPE=Release && \ - make install && \ - rm -rf /tmp/nvim |