nexrad-archive/Makefile

9 lines
140 B
Makefile
Raw Normal View History

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