]> git.madduck.net Git - etc/vim.git/blob - .vim/bundle/ale/Dockerfile

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Merge commit '294584081929424aec883f90c7d6515b3743358d' as '.vim/bundle/vim-lsp-ale'
[etc/vim.git] / .vim / bundle / ale / Dockerfile
1 ARG TESTBED_VIM_VERSION=24
2
3 FROM testbed/vim:${TESTBED_VIM_VERSION}
4
5 ENV PACKAGES="\
6     lua5.1 \
7     lua5.1-dev \
8     lua5.1-busted \
9     bash \
10     git \
11     python2 \
12     python3 \
13     py3-pip \
14     grep \
15     sed \
16 "
17 RUN apk --update add $PACKAGES && \
18     rm -rf /var/cache/apk/* /tmp/* /var/tmp/*
19
20 RUN install_vim -tag v8.0.0027 -build \
21                 -tag v9.0.0297 -build \
22                 -tag neovim:v0.7.0 -build \
23                 -tag neovim:v0.8.0 -build
24
25 RUN pip install vim-vint==0.3.21
26
27 RUN git clone https://github.com/junegunn/vader.vim vader && \
28     cd vader && git checkout c6243dd81c98350df4dec608fa972df98fa2a3af
29
30 ARG GIT_VERSION
31 LABEL Version=${GIT_VERSION}
32 LABEL Name=denseanalysis/ale