nexrad-archive/Makefile
2025-02-11 22:27:49 -05:00

8 lines
140 B
Makefile

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