X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=ci%2Fdocker%2FDockerfile;h=f5ac0e8696613bd28cd6f93af9113b72dd359c78;hb=514ad1b0b8fea733bdf9dacfe8d9006aa882fd10;hp=70d0be0afc3dfd7846e4c888ba949a99ede64500;hpb=549add2f569cb5ea9962ee4441292e96f8aedf36;p=bottlenecks.git diff --git a/ci/docker/Dockerfile b/ci/docker/Dockerfile index 70d0be0a..f5ac0e86 100644 --- a/ci/docker/Dockerfile +++ b/ci/docker/Dockerfile @@ -18,19 +18,23 @@ ENV REPOS_DIR /home/opnfv # Bottlenecks repo ENV BOTTLENECKS_REPO_DIR ${REPOS_DIR}/bottlenecks ENV RELENG_REPO_DIR ${REPOS_DIR}/releng +ENV creds ${BOTTLENECKS_REPO_DIR}/config/openstack.creds #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 +45,5 @@ 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 easy_install pytz +RUN pip install -r ${REPOS_DIR}/bottlenecks/requirements.txt