docker-i2psnark/Makefile

10 lines
102 B
Makefile

NAME := i2psnark
all:
docker build -t ${NAME} .
clean:
docker image rm ${NAME}
.PHONY: all clean