mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-11 03:35:47 +00:00
As this is not installed via apk it was not being included in the checksum. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
33 lines
894 B
Makefile
33 lines
894 B
Makefile
.PHONY: tag push
|
|
|
|
BASE=golang:1.7-alpine
|
|
IMAGE=alpine-build-go
|
|
|
|
default: push
|
|
|
|
hash:
|
|
docker pull $(BASE)
|
|
tar cf - Dockerfile | docker build --no-cache -t $(IMAGE):build -
|
|
docker run golang:alpine sh -c 'cat /usr/local/go/bin/go /lib/apk/db/installed | sha1sum' | sed 's/ .*//' > hash
|
|
|
|
push: hash
|
|
docker pull mobylinux/$(IMAGE):$(shell cat hash) || \
|
|
(docker tag $(IMAGE):build mobylinux/$(IMAGE):latest && \
|
|
docker tag $(IMAGE):build mobylinux/$(IMAGE):$(shell cat hash) && \
|
|
docker push mobylinux/$(IMAGE):$(shell cat hash) && \
|
|
docker push mobylinux/$(IMAGE):latest)
|
|
docker rmi $(IMAGE):build
|
|
rm -f hash
|
|
|
|
tag: hash
|
|
docker pull mobylinux/$(IMAGE):$(shell cat hash) || \
|
|
(docker tag $(IMAGE):build mobylinux/$(IMAGE):latest && \
|
|
docker tag $(IMAGE):build mobylinux/$(IMAGE):$(shell cat hash))
|
|
docker rmi $(IMAGE):build
|
|
rm -f hash
|
|
|
|
clean:
|
|
rm -f hash
|
|
|
|
.DELETE_ON_ERROR:
|