Upgrade baseimage: light-baseimage:0.2.5

This commit is contained in:
ofreax
2016-08-12 14:03:36 +02:00
parent 975d9b7b02
commit 89a69bebc5
4 changed files with 19 additions and 18 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
NAME = osixia/keepalived
VERSION = 0.2.2
VERSION = 0.2.3
.PHONY: all build build-nocache test tag_latest release
@@ -15,7 +15,7 @@ test:
env NAME=$(NAME) VERSION=$(VERSION) bats test/test.bats
tag_latest:
docker tag -f $(NAME):$(VERSION) $(NAME):latest
docker tag $(NAME):$(VERSION) $(NAME):latest
release: build test tag_latest
@if ! docker images $(NAME) | awk '{ print $$2 }' | grep -q -F $(VERSION); then echo "$(NAME) version $(VERSION) is not yet built. Please run 'make build'"; false; fi