aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Segundo2023-10-08 22:56:43 +0200
committerChristian Segundo2023-10-08 22:57:58 +0200
commitec28cdca519f3b892f2a9cf3e1ac491294ac0a75 (patch)
treee72970370c00454bd1ab8546472dd8135c824167
parentc2b83a834852d5dcbaa20a3e8f244b2f6ea00769 (diff)
downloadnvim-ec28cdca519f3b892f2a9cf3e1ac491294ac0a75.tar.gz
add luals
-rw-r--r--Dockerfile33
1 files 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"]