1
0
mirror of /repos/baseimage-docker.git synced 2026-02-27 17:41:59 +01:00

Add a release command

This commit is contained in:
Hongli Lai (Phusion)
2013-11-12 13:06:05 +01:00
parent fc32bf693d
commit 3d622ef6c8

View File

@@ -1,7 +1,7 @@
NAME = phusion/baseimage NAME = phusion/baseimage
VERSION = 0.9.0 VERSION = 0.9.0
.PHONY: all build tag_latest .PHONY: all build tag_latest release
all: build all: build
@@ -10,3 +10,6 @@ build:
tag_latest: tag_latest:
docker tag $(NAME):$(VERSION) $(NAME):latest docker tag $(NAME):$(VERSION) $(NAME):latest
release: tag_latest
docker push $(NAME)