URL := https://storage-waterfox.netdna-ssl.com/releases/linux64/installer/waterfox-56.2.14.en-US.linux-x86_64.tar.bz2

all:
	wget -N ${URL}
	docker build --tag fireduck .

clean:
	git clean -fx

.PHONY: all clean