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
+
diff --git a/README.md b/README.md
index 46760e6..2166323 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,5 @@
 Block storage devices tests tool. See wiki for details
+Look into INSTALL.md for installation steps.
 
 Look into config-example for examples of config file.
 Copy example in same folder and replace ${VAR} with appropriate value
diff --git a/wally/report.py b/wally/report.py
index 46c5599..092f8d8 100644
--- a/wally/report.py
+++ b/wally/report.py
@@ -13,9 +13,6 @@
 
 import wally
 
-# import matplotlib
-# matplotlib.use('GTKAgg')
-
 from cephlib import html
 from cephlib.units import b2ssize, b2ssize_10, unit_conversion_coef, unit_conversion_coef_f
 from cephlib.statistic import calc_norm_stat_props
@@ -1024,10 +1021,6 @@
         content_block = []
         link_idx = 0
 
-        # matplotlib.rcParams.update(ctx.config.reporting.matplotlib_params.raw())
-        # ColorProfile.__dict__.update(ctx.config.reporting.colors.raw())
-        # StyleProfile.__dict__.update(ctx.config.reporting.style.raw())
-
         items = defaultdict(lambda: defaultdict(list))  # type: Dict[str, Dict[str, List[HTMLBlock]]]
         DEBUG = False
         job_summ_sort_order = []