summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2017-11-30 16:47:52 -0800
committerFrédéric Guillot <fred@kanboard.net>2017-11-30 16:55:53 -0800
commit55547db6ce691a71d19a502178c2a9e00a303dd5 (patch)
tree41197ca843b9b0d5f47e6b22e5bcc00a4aa37b68 /Makefile
parent12202f04511c14844641edce879afd81e10e767b (diff)
Improve docker build to use hooks
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 1 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index c73ab68c..d583ad0d 100644
--- a/Makefile
+++ b/Makefile
@@ -73,12 +73,6 @@ sql:
@ grep -v "SET idle_in_transaction_session_timeout = 0;" app/Schema/Sql/postgres.sql > temp && mv temp app/Schema/Sql/postgres.sql
docker-image:
- @ docker build -t kanboard/kanboard:latest .
-
-docker-push:
- @ docker push kanboard/kanboard:latest
-
-docker-run:
- @ docker run -d --name kanboard -p 80:80 -t kanboard/kanboard:latest
+ @ IMAGE_NAME=kanboard/kanboard:latest ./hooks/build
.PHONY: all