forked from Vimjas/vim-testbed
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Provide an image with default Vims (including Neovim)
Fixes Vimjas#27.
- Loading branch information
Showing
2 changed files
with
30 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# A set of default Vims, including Neovim. | ||
FROM testbed/vim | ||
|
||
# Currently tested versions: | ||
# - v7.3.429 (Ubuntu Precise, 12.04LTS; same as on Travis currently) | ||
# - v7.4.052 (Ubuntu Trusty, 14.04LTS) | ||
# - v7.4.1689 (Ubuntu Xenial, 16.04LTS) | ||
# - v8.0.8069 (Updated Vim 8, https://groups.google.com/forum/#!topic/vim_dev/ro_FpeXgc24) | ||
RUN install_vim -tag v7.3.429 -name vim73 -py -build \ | ||
-tag v7.4.052 -name vim74-trusty -build \ | ||
-tag v7.4.1689 -name vim74-xenial -build \ | ||
-tag v8.0.0069 -name vim8069 -build \ | ||
-tag neovim:v0.1.7 -py2 -py3 -build \ | ||
-tag neovim:v0.2.0 -py2 -py3 -build | ||
|
||
ENV _UPDATE=2017-05-02 | ||
|
||
# Git master in a separate layer, since the above is meant to be stable. | ||
RUN install_vim -tag master -py3 -build \ | ||
-tag neovim:master -py2 -py3 -build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters