DOCKER		= docker
DOCKER_TAG	= xmet:latest

all:
	$(DOCKER) image build --tag $(DOCKER_TAG) .

clean:
	$(DOCKER) rmi $(DOCKER_TAG)