Add the way to deploy InfluxDB and Grafana locally to userguide
[yardstick.git] / tests / ci / docker / yardstick-ci / Dockerfile
1 ##############################################################################
2 # Copyright (c) 2015 Ericsson AB and others.
3 #
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9
10 FROM ubuntu:14.04
11
12 LABEL image=opnfv/yardstick
13
14 # GIT repo directory
15 ENV REPOS_DIR /home/opnfv/repos
16
17 # Yardstick repo
18 ENV YARDSTICK_REPO_DIR ${REPOS_DIR}/yardstick
19 ENV RELENG_REPO_DIR ${REPOS_DIR}/releng
20
21 RUN apt-get update && apt-get install -y \
22     wget \
23     curl \
24     git \
25     sshpass \
26     qemu-utils \
27     kpartx \
28     libffi-dev \
29     libssl-dev \
30     python \
31     python-dev \
32     libxml2-dev \
33     libxslt1-dev \
34     python-setuptools && \
35     easy_install -U setuptools
36
37 RUN apt-get -y autoremove && \
38     apt-get clean
39
40 RUN mkdir -p ${REPOS_DIR}
41
42 RUN git config --global http.sslVerify false
43 RUN git clone https://gerrit.opnfv.org/gerrit/yardstick ${YARDSTICK_REPO_DIR}
44 RUN git clone https://gerrit.opnfv.org/gerrit/releng ${RELENG_REPO_DIR}
45
46 # install yardstick + dependencies
47 RUN cd ${YARDSTICK_REPO_DIR} && easy_install -U pip
48 RUN cd ${YARDSTICK_REPO_DIR} && pip install -r tests/ci/requirements.txt
49 RUN cd ${YARDSTICK_REPO_DIR} && pip install .
50
51 ADD http://download.cirros-cloud.net/0.3.3/cirros-0.3.3-x86_64-disk.img /home/opnfv/images/
52 ADD http://cloud-images.ubuntu.com/trusty/current/trusty-server-cloudimg-amd64-disk1.img /home/opnfv/images/
53
54 COPY ./exec_tests.sh /usr/local/bin/