diff options
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 |