summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 20aa22748f2bc99d35fe9eabab293124be259052 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
ARG TESTBED_VIM_VERSION=24

# https://hub.docker.com/r/testbed/vim/
FROM testbed/vim:${TESTBED_VIM_VERSION}

RUN install_vim -tag v8.0.0027 -build \
                -tag v9.0.0297 -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/*

# https://pypi.org/project/vim-vint/
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