mirror of
https://github.com/dense-analysis/ale
synced 2025-01-13 18:48:14 +00:00
cbf7045eee
* Fix 4324 - add neovim 0.8 test * Update vim testbed image * Update documentation Co-authored-by: w0rp <w0rp@users.noreply.github.com>
28 lines
615 B
Docker
28 lines
615 B
Docker
FROM testbed/vim:24
|
|
|
|
RUN install_vim -tag v8.0.0027 -build \
|
|
-tag v9.0.0133 -build \
|
|
-tag neovim:v0.2.0 -build \
|
|
-tag neovim:v0.8.0 -build
|
|
|
|
ENV PACKAGES="\
|
|
bash \
|
|
git \
|
|
python2 \
|
|
python3 \
|
|
py3-pip \
|
|
grep \
|
|
sed \
|
|
"
|
|
RUN apk --update add $PACKAGES && \
|
|
rm -rf /var/cache/apk/* /tmp/* /var/tmp/*
|
|
|
|
RUN pip install vim-vint==0.3.21
|
|
|
|
RUN git clone https://github.com/junegunn/vader.vim vader && \
|
|
cd vader && git checkout c6243dd81c98350df4dec608fa972df98fa2a3af
|
|
|
|
ARG GIT_VERSION
|
|
LABEL Version=${GIT_VERSION}
|
|
LABEL Name=denseanalysis/ale
|