Skip to content

Commit 1dc5676

Browse files
committed
Add latest image
1 parent dffee6f commit 1dc5676

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

Dockerfile.latest

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# The latest Vim and Neovim releases.
2+
#
3+
# The Vim release (tag) is based on the Windows release at
4+
# http://www.vim.org/download.php (assuming this to be considered stable).
5+
#
6+
# This is available online at https://hub.docker.com/r/testbed/vim-latest/.
7+
FROM testbed/vim
8+
9+
RUN install_vim -tag v8.1.0000 -name vim -py3 -build \
10+
-tag neovim:v0.3.1 -py2 -py3 -build

Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
DOCKER_REPO_BASE:=testbed/vim
44
DOCKER_REPO_VIMS_DEFAULT:=testbed/vim-default
5+
DOCKER_REPO_VIMS_LATEST:=testbed/vim-latest
56

67
TAG:=11
78

@@ -19,6 +20,11 @@ update_latest:
1920
docker tag testbed/vim:$(TAG) testbed/vim:latest
2021
docker push testbed/vim:latest
2122

23+
build_latest:
24+
docker build -f Dockerfile.latest -t $(DOCKER_REPO_VIMS_LATEST) .
25+
push_latest:
26+
docker push $(DOCKER_REPO_VIMS_LATEST)
27+
2228
# test: build the base image and example image on top, running tests therein.
2329
DOCKER_BASE_IMAGE:=vim-testbed-base
2430
test:

0 commit comments

Comments
 (0)