1
0
mirror of /repos/baseimage-docker.git synced 2025-12-30 08:01:31 +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
No known key found for this signature in database
GPG Key ID: 06A131094B6F4332

View File

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