aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-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"]