diff --git a/tools/qemu/Makefile b/tools/qemu/Makefile index 0496d8d0e..b52fa7214 100644 --- a/tools/qemu/Makefile +++ b/tools/qemu/Makefile @@ -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)