diff options
author | Jo¶rgen Karlsson <jorgen.w.karlsson@ericsson.com> | 2015-10-14 14:41:41 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2015-10-14 14:41:41 +0000 |
commit | a1378b700a9234e7fcbf77c7890030b306bc65ea (patch) | |
tree | d8e1b3bfdf484399d4d4aa572612c635fe3e05ea /ci/docker/yardstick-ci/Dockerfile | |
parent | 3bca848a141ba2728d036a1423b514027b0e4b98 (diff) | |
parent | d03858bbac357b6d705c7137d2d20d5c8e34ecc6 (diff) |
Merge "Docker container for Yardstick CI"
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/ |