From 7209b9b3f9aedaba4ed1ae91c78641a29d84ba0c Mon Sep 17 00:00:00 2001 From: Jo¶rgen Karlsson Date: Thu, 29 Oct 2015 16:16:36 +0100 Subject: Docker container for Yardstick CI part 2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added test suit selection and an option to use the HTTP Result API. Part 1: https://gerrit.opnfv.org/gerrit/#/c/2201/ Change-Id: I1c25d07e46cd44e25f448706ff2dfc3b31cd7208 JIRA:- Signed-off-by: Jo¶rgen Karlsson --- ci/docker/yardstick-ci/Dockerfile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'ci/docker/yardstick-ci/Dockerfile') diff --git a/ci/docker/yardstick-ci/Dockerfile b/ci/docker/yardstick-ci/Dockerfile index 15b0f6224..9a1e83262 100644 --- a/ci/docker/yardstick-ci/Dockerfile +++ b/ci/docker/yardstick-ci/Dockerfile @@ -11,7 +11,11 @@ FROM ubuntu:14.04 LABEL image=opnfv/yardstick-ci -ENV YARDSTICK_REPO_DIR /home/yardstick +# GIT repo directory +ENV REPOS_DIR /home/opnfv/repos + +# Yardstick repo +ENV YARDSTICK_REPO_DIR ${REPOS_DIR}/yardstick RUN apt-get update && apt-get install -y \ wget \ @@ -29,6 +33,9 @@ RUN apt-get update && apt-get install -y \ RUN apt-get -y autoremove && \ apt-get clean +RUN mkdir -p ${REPOS_DIR} + +RUN git config --global http.sslVerify false RUN git clone https://gerrit.opnfv.org/gerrit/yardstick ${YARDSTICK_REPO_DIR} COPY ./run_benchmarks /usr/local/bin/ -- cgit