summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarit.de>2020-03-25 14:50:39 +0100
committerMarkus Heiser <markus.heiser@darmarit.de>2020-03-25 14:50:39 +0100
commit3dbade0aed048e6001f2ed0f261c7d26f04768ba (patch)
tree4579ada128e843233ed32a1431f4c98e03784c4a /Makefile
parent757ebb5d9fdc24757f199e52575f32f6faf091b3 (diff)
[fix] brands: add GIT_URL variable to the docker build
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 4914a309e..f81b4e1de 100644
--- a/Makefile
+++ b/Makefile
@@ -29,6 +29,7 @@ help:
@echo ' clean - drop builds and environments'
@echo ' project - re-build generic files of the searx project'
@echo ' themes - re-build build the source of the themes'
+ @echo ' docker - build Docker image'
@echo ''
@$(MAKE) -s -f utils/makefile.include make-help
@echo ''
@@ -102,6 +103,14 @@ themes.simple:
$(Q)echo '[!] Grunt build : simple theme'
$(Q)grunt --gruntfile "searx/static/themes/simple/gruntfile.js"
+# docker
+# ------
+
+PHONY += docker
+docker:
+ $(Q)./manage.sh docker_build
+
+
# test
# ----