TAG = fortune

image: 
	podman build  . --tag $(TAG)

run:
	@podman run -it --rm $(TAG)

clean:

clobber: clean
	podman image rm $(TAG)
