vimwiki/Dockerfile

26 lines
833 B
Docker
Raw Normal View History

FROM testbed/vim:latest
2019-07-14 15:32:38 +02:00
# Add packages
RUN apk --no-cache add bash
RUN apk --no-cache add git
RUN apk --no-cache add python3
2019-07-14 15:32:38 +02:00
# Get vint for linting
RUN pip3 install vim-vint
2019-07-14 15:32:38 +02:00
# Get vader for unit tests
2019-12-21 04:40:48 +01:00
RUN git clone -n https://github.com/junegunn/vader.vim /vader
WORKDIR /vader
RUN git checkout de8a976f1eae2c2b680604205c3e8b5c8882493c
# Build vim and neovim versions we want to test
# TODO add nvim tag
2019-12-21 04:40:48 +01:00
WORKDIR /
2019-07-21 06:13:03 +02:00
RUN install_vim -tag v7.3.429 -name vim_7.3.429 -build \
-tag v7.4.1099 -name vim_7.4.1099 -build \
-tag v7.4.1546 -name vim_7.4.1546 -build \
-tag v8.0.0027 -name vim_8.0.0027 -build \
-tag v8.1.0519 -name vim_8.1.0519 -build \
+ -tag neovim:v0.2.2 -name nvim_0.2.2 -build \
+ -tag neovim:v0.3.8 -name nvim_0.3.8 -build \