.PHONY: all build push pull

TAG := t0.0.1

all: build push pull

pull:
	git pull

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

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