linuxkit/tools/guestfs/Makefile
Ian Campbell 13d11f49ba Rename "tag*" Makefile targets to "build*"
This better matches the `linuxkit pkg build` nomenclature.

Signed-off-by: Ian Campbell <ijc@docker.com>
2017-10-09 16:48:48 +01:00

30 lines
676 B
Makefile

.PHONY: build push
IMAGE=guestfs
export DOCKER_CONTENT_TRUST=1
default: push
iid: Dockerfile
tar cf - $^ | docker build --no-cache --iidfile iid -
hash: Makefile iid
docker run --rm $(shell cat iid) sh -c 'apt list --installed 2>/dev/null | sha1sum' | sed 's/ .*//' > hash
push: hash iid
docker pull linuxkit/$(IMAGE):$(shell cat hash) || \
(docker tag $(shell cat iid) linuxkit/$(IMAGE):$(shell cat hash) && \
docker push linuxkit/$(IMAGE):$(shell cat hash))
rm -f iid
build: hash iid
docker pull linuxkit/$(IMAGE):$(shell cat hash) || \
docker tag $(shell cat iid) linuxkit/$(IMAGE):$(shell cat hash)
rm -f iid
clean:
rm -f hash iid
.DELETE_ON_ERROR: