xmet/Makefile
2025-02-22 13:53:54 -05:00

8 lines
130 B
Makefile

DOCKER = docker
DOCKER_TAG = xmet:latest
all:
$(DOCKER) image build --tag $(DOCKER_TAG) .
clean:
$(DOCKER) rmi $(DOCKER_TAG)