remove extra dirs
diff --git a/Dockerfile b/Dockerfile
index 21e8ba0..0b4fa60 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -9,18 +9,20 @@
     apt-get update &&  \
     apt-get install -y vim git build-essential python3.6 python3.6-dev python3-pip python3.6-venv curl wget
 
-RUN git clone https://github.com/Mirantis/disk_perf_test_tool.git /opt/disk_perf_tool && \
-    git clone https://github.com/koder-ua/cephlib.git /opt/cephlib && \
+COPY . /opt/disk_perf_tool
+
+# git clone https://github.com/Mirantis/disk_perf_test_tool.git /opt/disk_perf_tool && \
+# git checkout v2.0 && \
+
+RUN git clone https://github.com/koder-ua/cephlib.git /opt/cephlib && \
     git clone https://github.com/koder-ua/xmlbuilder3.git /opt/xmlbuilder3 && \
     git clone https://github.com/koder-ua/agent.git /opt/agent && \
     mkdir /opt/wally_libs && \
     ln -s /opt/agent/agent /opt/wally_libs && \
     ln -s /opt/xmlbuilder3/xmlbuilder3 /opt/wally_libs && \
-    ln -s /opt/cephlib/cephlib /opt/wally_libs && \
-    python3.6 -m pip install pip --upgrade && \
-    cd /opt/disk_perf_tool && \
-    git checkout v2.0 && \
-    python3.6 -m pip install wheel && \
-    python3.6 -m pip install -r requirements.txt
+    ln -s /opt/cephlib/cephlib /opt/wally_libs
+
+RUN python3.6 -m pip install pip --upgrade
+RUN cd /opt/disk_perf_tool &&  python3.6 -m pip install wheel && python3.6 -m pip install -r requirements.txt
 
 CMD /bin/bash