.PHONY: all build push pull

TAG ?= v0.0.1

all: build push pull

pull:
	git pull

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

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