From ec28cdca519f3b892f2a9cf3e1ac491294ac0a75 Mon Sep 17 00:00:00 2001 From: Christian Segundo Date: Sun, 8 Oct 2023 22:56:43 +0200 Subject: add luals --- Dockerfile | 33 ++++++++++++++++++--------------- 1 file changed, 18 insertions(+), 15 deletions(-) diff --git a/Dockerfile b/Dockerfile index ac339f7..d2e1879 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"] -- cgit v1.2.3