Skip to content

Commit

Permalink
Add latest image
Browse files Browse the repository at this point in the history
  • Loading branch information
blueyed committed Jul 23, 2018
1 parent dffee6f commit 1dc5676
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Dockerfile.latest
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# The latest Vim and Neovim releases.
#
# The Vim release (tag) is based on the Windows release at
# http://www.vim.org/download.php (assuming this to be considered stable).
#
# This is available online at https://hub.docker.com/r/testbed/vim-latest/.
FROM testbed/vim

RUN install_vim -tag v8.1.0000 -name vim -py3 -build \
-tag neovim:v0.3.1 -py2 -py3 -build
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

DOCKER_REPO_BASE:=testbed/vim
DOCKER_REPO_VIMS_DEFAULT:=testbed/vim-default
DOCKER_REPO_VIMS_LATEST:=testbed/vim-latest

TAG:=11

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

build_latest:
docker build -f Dockerfile.latest -t $(DOCKER_REPO_VIMS_LATEST) .
push_latest:
docker push $(DOCKER_REPO_VIMS_LATEST)

# test: build the base image and example image on top, running tests therein.
DOCKER_BASE_IMAGE:=vim-testbed-base
test:
Expand Down

0 comments on commit 1dc5676

Please sign in to comment.