aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2a3e1c7..3a5617a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,10 @@
+URL := https://storage-waterfox.netdna-ssl.com/releases/linux64/installer/waterfox-56.2.14.en-US.linux-x86_64.tar.bz2
+
all:
- docker build --tag firedock .
+ wget -N ${URL}
+ docker build --tag waterbox .
clean:
- @true
+ git clean -fx
.PHONY: all clean