mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-13 23:13:10 +00:00
Simpler to have an image that takes the kernel and initrd as input, rather than building them into the image. The rest need converting. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
33 lines
876 B
Makefile
33 lines
876 B
Makefile
.PHONY: tag push
|
|
|
|
BASE=alpine:3.4
|
|
IMAGE=alpine-bios
|
|
|
|
default: push
|
|
|
|
hash:
|
|
docker pull $(BASE)
|
|
tar cf - Dockerfile make-iso isolinux.cfg | docker build --no-cache -t $(IMAGE):build -
|
|
docker run --rm $(IMAGE):build sha1sum /lib/apk/db/installed | 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:
|