X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=ci%2Fdocker%2FDockerfile;h=689621152f5da39bc2020c3c8d6d805c28785a77;hb=378094d7ad21a21bcb5067053db2e904ae792f18;hp=375ceba6e82c20a62637f184559b8fe2f27933e4;hpb=43c038ddf45d5343f23cc0dbdd39c1eb8890f073;p=bottlenecks.git diff --git a/ci/docker/Dockerfile b/ci/docker/Dockerfile index 375ceba6..68962115 100644 --- a/ci/docker/Dockerfile +++ b/ci/docker/Dockerfile @@ -21,16 +21,19 @@ ENV RELENG_REPO_DIR ${REPOS_DIR}/releng #new test suite required packages can be added here RUN apt-get update && apt-get install -y \ + libffi-dev \ + libssl-dev \ + libxml2-dev \ + libxslt1-dev \ curl \ wget \ git \ sshpass \ python \ - python-glanceclient \ - python-heatclient \ - python-keystoneclient \ - python-neutronclient \ - python-novaclient + python-dev \ + python-pip \ + python-setuptools && \ + easy_install -U setuptools RUN apt-get -y autoremove && \ apt-get clean @@ -41,4 +44,4 @@ RUN git config --global http.sslVerify false RUN git clone https://gerrit.opnfv.org/gerrit/bottlenecks ${BOTTLENECKS_REPO_DIR} RUN git clone https://gerrit.opnfv.org/gerrit/releng ${RELENG_REPO_DIR} -COPY ../../run_tests.sh /usr/local/bin/ +RUN pip install -r ${REPOS_DIR}/bottlenecks/requirements.txt