1
0
mirror of /repos/baseimage-docker.git synced 2025-12-30 08:01:31 +01:00
baseimage-docker/Makefile
Hongli Lai (Phusion) 3d622ef6c8
Add a release command
2013-11-12 13:06:05 +01:00

16 lines
246 B
Makefile

NAME = phusion/baseimage
VERSION = 0.9.0
.PHONY: all build tag_latest release
all: build
build:
docker build -t $(NAME):$(VERSION) -rm image
tag_latest:
docker tag $(NAME):$(VERSION) $(NAME):latest
release: tag_latest
docker push $(NAME)