diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 33 |
1 files changed, 18 insertions, 15 deletions
@@ -2,21 +2,24 @@ FROM alpine:latest ARG NEOVIM_VERSION=- -RUN apk --no-cache add \ - autoconf \ - automake \ - bash \ - build-base \ - cmake \ - coreutils \ - curl \ - gettext-tiny-dev \ - git \ - libtool \ - luacheck \ - pkgconf \ - unzip \ - wget +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 \ + unzip \ + wget SHELL ["/bin/bash", "-o", "pipefail", "-c"] |