diff options
author | Christian Segundo | 2023-10-08 22:56:43 +0200 |
---|---|---|
committer | Christian Segundo | 2023-10-08 22:57:58 +0200 |
commit | ec28cdca519f3b892f2a9cf3e1ac491294ac0a75 (patch) | |
tree | e72970370c00454bd1ab8546472dd8135c824167 | |
parent | c2b83a834852d5dcbaa20a3e8f244b2f6ea00769 (diff) | |
download | nvim-ec28cdca519f3b892f2a9cf3e1ac491294ac0a75.tar.gz |
add luals
-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"] |