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
diff --git a/setup.cfg b/setup.cfg
deleted file mode 100644
index 28fd266..0000000
--- a/setup.cfg
+++ /dev/null
@@ -1,25 +0,0 @@
-[metadata]
-name = wally
-version = 1.0
-summary = Block storage test tool
-description-file =
-    README.md
-author = kostiantyn danilov aka koder
-author-email = kdanilov@mirantis.com
-home-page = https://github.com/Mirantis/disk_perf_test_tool
-classifier =
-    Intended Audience :: Developers
-    Intended Audience :: Information Technology
-    License :: OSI Approved :: Apache Software License
-    Operating System :: POSIX :: Linux
-    Programming Language :: Python
-    Programming Language :: Python :: 2
-    Programming Language :: Python :: 2.7
-
-[files]
-packages =
-    wally
-
-[entry_points]
-console_scripts =
-    wally = wally.__main__:main
diff --git a/setup.py b/setup.py
deleted file mode 100644
index 7363757..0000000
--- a/setup.py
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/usr/bin/env python
-# Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#    http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
-# implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT
-import setuptools
-
-# In python < 2.7.4, a lazy loading of package `pbr` will break
-# setuptools if some other modules registered functions in `atexit`.
-# solution from: http://bugs.python.org/issue15881#msg170215
-try:
-    import multiprocessing  # noqa
-except ImportError:
-    pass
-
-setuptools.setup(
-    setup_requires=['pbr'],
-    pbr=True)