diff options
Diffstat (limited to 'ci/docker/yardstick-ci/Dockerfile')
-rw-r--r-- | ci/docker/yardstick-ci/Dockerfile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/ci/docker/yardstick-ci/Dockerfile b/ci/docker/yardstick-ci/Dockerfile new file mode 100644 index 000000000..15b0f6224 --- /dev/null +++ b/ci/docker/yardstick-ci/Dockerfile @@ -0,0 +1,34 @@ +############################################################################## +# Copyright (c) 2015 Ericsson AB and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + +FROM ubuntu:14.04 + +LABEL image=opnfv/yardstick-ci + +ENV YARDSTICK_REPO_DIR /home/yardstick + +RUN apt-get update && apt-get install -y \ + wget \ + git \ + sshpass \ + qemu-utils \ + kpartx \ + libffi-dev \ + libssl-dev \ + python \ + python-dev \ + python-setuptools && \ + easy_install -U setuptools + +RUN apt-get -y autoremove && \ + apt-get clean + +RUN git clone https://gerrit.opnfv.org/gerrit/yardstick ${YARDSTICK_REPO_DIR} + +COPY ./run_benchmarks /usr/local/bin/ |