aboutsummaryrefslogtreecommitdiff
path: root/newsboat/Makefile
blob: b2f9907b1b69b11fec622a3f905f28c48f320eb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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)