tools/qemu: Use common pkg/package.mk to drive Makefile

Signed-off-by: Ian Campbell <ian.campbell@docker.com>
This commit is contained in:
Ian Campbell 2017-06-28 14:50:01 +01:00
parent 7534d4c926
commit d5535ea3e4

View File

@ -1,15 +1,3 @@
.PHONY: tag push
default: push
include ../../pkg/package.mk
ORG?=linuxkit
IMAGE=qemu
DEPS=Dockerfile Makefile
HASH?=$(shell git ls-tree HEAD -- ../$(notdir $(CURDIR)) | awk '{print $$3}')
tag: $(DEPS)
DOCKER_CONTENT_TRUST=1 docker build --no-cache --network=none -t $(ORG)/$(IMAGE):$(HASH) .
push: tag
docker pull $(ORG)/$(IMAGE):$(HASH) || \
docker push $(ORG)/$(IMAGE):$(HASH)