add docker build

Signed-off-by: Gennadiy Dubina <gennadiy.dubina@dataart.com>
diff --git a/Makefile b/Makefile
index 2c7255b..226bcb4 100644
--- a/Makefile
+++ b/Makefile
@@ -2,6 +2,8 @@
 all: pip deb
 
 prepare:
+	pip install setuptools
+	#pip install -r requirements.txt
 	mkdir -p build/
 	cp MANIFEST.in build/
 	cp requirements.txt build/
@@ -52,6 +54,15 @@
 test:
 	./test/basictest.sh --force --insert-bashrc --install-openvim --init-openvim
 
+build-docker-from-source:
+	docker build -t osm/openmano -f docker/Dockerfile-local .
+
+run-docker:
+	docker-compose -f docker/openmano-compose.yml up
+
+stop-docker:
+	docker-compose -f docker/openmano-compose.yml down
+
 clean:
 	rm -rf build
 	#find build -name '*.pyc' -delete