wireguard tools: use ORG pattern as in other makefiles

Signed-off-by: Tycho Andersen <tycho@docker.com>
This commit is contained in:
Tycho Andersen 2017-05-26 15:45:41 -06:00
parent a53e251908
commit 8c96d38ca3

View File

@ -3,13 +3,14 @@ default: push
IMAGE=wireguard-utils
DEPS=Dockerfile
ORG?=linuxkit
HASH?=$(shell git ls-tree HEAD -- ../$(notdir $(CURDIR)) | awk '{print $$3}')
tag: $(DEPS)
docker pull linuxkit/$(IMAGE):$(HASH) || \
docker build --no-cache -t linuxkit/$(IMAGE):$(HASH) .
docker pull $(ORG)/$(IMAGE):$(HASH) || \
docker build --no-cache -t $(ORG)/$(IMAGE):$(HASH) .
push: tag
docker pull linuxkit/$(IMAGE):$(HASH) || \
docker push linuxkit/$(IMAGE):$(HASH)
docker pull $(ORG)/$(IMAGE):$(HASH) || \
docker push $(ORG)/$(IMAGE):$(HASH)