cleanup
diff --git a/Makefile b/Makefile
index 0c706de..d827b06 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-.PHONY: mypy pylint pylint_e
+.PHONY: mypy pylint pylint_e docker
 
 ALL_FILES=$(shell find wally/ -type f -name '*.py')
 STUBS="stubs:../venvs/wally/lib/python3.5/site-packages/"
@@ -13,3 +13,11 @@
 
 pylint_e:
 		python3 -m pylint -E '${PYLINT_FMT}' --rcfile=pylint.rc ${ALL_FILES}
+
+docker:
+		docker build --squash -t wally:v2 .
+		docker tag wally:v2 ${DOCKER_ID_USER}/wally:v2
+
+docker_push:
+		docker push ${DOCKER_ID_USER}/wally:v2
+