IMAGE=docker.crute.me/newsboat:latest all: docker build -t $(IMAGE) . all-no-cache: docker build --no-cache -t $(IMAGE) . run: docker run -ti --detach-keys ctrl-@ $(IMAGE) publish: docker push $(IMAGE)