2
0

Default make all to build and push

This commit is contained in:
Matt Robenolt 2016-06-03 14:54:36 -07:00
parent 5d8b64be0c
commit 5c4c34613d

View File

@ -12,10 +12,10 @@ $(REPOSITORY)_$(TAG).tar: build
@echo "$(OK_COLOR)==>$(NO_COLOR) Saving $(REPOSITORY):$(TAG) > $@"
@docker save $(REPOSITORY):$(TAG) > $@
push:
push: build
@echo "$(OK_COLOR)==>$(NO_COLOR) Pushing $(REPOSITORY):$(TAG)"
@docker push $(REPOSITORY):$(TAG)
all: build $(REPOSITORY)_$(TAG).tar
all: build push
.PHONY: all build push