mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-10-30 02:10:00 +00:00
15 lines
344 B
Makefile
15 lines
344 B
Makefile
.PHONY: tag push
|
|
default: push
|
|
|
|
IMAGE=openntpd
|
|
DEPS=Dockerfile etc/ntpd.conf
|
|
|
|
HASH?=$(shell git ls-tree HEAD -- ../$(notdir $(CURDIR)) | awk '{print $$3}')
|
|
|
|
tag: $(DEPS)
|
|
docker build --squash --no-cache --network=none -t linuxkit/$(IMAGE):$(HASH) .
|
|
|
|
push: tag
|
|
docker pull linuxkit/$(IMAGE):$(HASH) || \
|
|
docker push linuxkit/$(IMAGE):$(HASH)
|