diff options
author | Prashanth Chandra <coolshanth94@gmail.com> | 2016-10-11 10:28:25 +0800 |
---|---|---|
committer | Prashanth Chandra <coolshanth94@gmail.com> | 2016-10-12 18:59:18 +0800 |
commit | 210d464442eb16c4450816307b5f52c7c6994913 (patch) | |
tree | 24d3cef71b98db8983fe77487474ad41e3ff6a27 /Dockerfile | |
parent | d8d08de26cb17c9319a08c0c5f611c6778260030 (diff) | |
download | ale-210d464442eb16c4450816307b5f52c7c6994913.zip |
Use vim-testbed to run Vader tests on Travis
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..2944bbad --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM tweekmonster/vim-testbed:latest + +RUN install_vim -tag v8.0.0000 -build \ + -tag v8.0.0027 -build + +ENV PACKAGES="\ + git \ +" +RUN apk --update add $PACKAGES && \ + rm -rf /var/cache/apk/* /tmp/* /var/tmp/* + +RUN git clone https://github.com/junegunn/vader.vim vader && \ + cd vader && git checkout c6243dd81c98350df4dec608fa972df98fa2a3af |