support lxml for parser in docker container
[yardstick.git] / 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     git \
24     sshpass \
25     qemu-utils \
26     kpartx \
27     libffi-dev \
28     libssl-dev \
29     python \
30     python-dev \
31     libxml2-dev \
32     libxslt1-dev \
33     python-setuptools && \
34     easy_install -U setuptools
35
36 RUN apt-get -y autoremove && \
37     apt-get clean
38
39 RUN mkdir -p ${REPOS_DIR}
40
41 RUN git config --global http.sslVerify false
42 RUN git clone https://gerrit.opnfv.org/gerrit/yardstick ${YARDSTICK_REPO_DIR}
43 RUN git clone https://gerrit.opnfv.org/gerrit/releng ${RELENG_REPO_DIR}
44
45 ADD http://download.cirros-cloud.net/0.3.3/cirros-0.3.3-x86_64-disk.img /home/opnfv/images/
46
47 COPY ./run_tests.sh /usr/local/bin/
48