PODMAN = podman
IMAGE = debianbash

.PHONY: build run

build:
	$(PODMAN) build -t $(IMAGE) .

run:
	$(PODMAN) run $(IMAGE)