From 61040f382eb7e5a61f8a12ddf5147a5a4556b923 Mon Sep 17 00:00:00 2001 From: Christian Segundo Date: Sun, 7 Apr 2024 21:39:46 +0200 Subject: update readme --- Dockerfile | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 Dockerfile (limited to 'Dockerfile') 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 -- cgit v1.2.3