.PHONY: all build push pull

TAG=v0.0.1

default: all

all: pull build push

pull:
	git pull

build:
	docker build --no-cache -t docker.aigic.ai/caduceus/computing-node:$(TAG) .

push:
	docker push docker.aigic.ai/caduceus/computing-node:$(TAG)
