Merge "bugfix: vping support not_hugepage_configured pod"
[functest.git] / docker / Dockerfile
1 ########################################
2 #   Docker container for FUNCTEST
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 MAINTAINER Jose Lausuch <jose.lausuch@ericsson.com>
12 LABEL version="0.1" description="OPNFV Functest Docker container"
13
14 # Environment variables
15 ARG BRANCH=master
16 ARG RALLY_TAG=0.8.1
17 ARG REFSTACK_TAG=15.0.0
18 ARG ODL_TAG=release/beryllium-sr4
19 ARG KINGBIRD_TAG=1.1.0
20 ARG VIMS_TAG=stable
21 ARG VROUTER_TAG=stable
22 ARG REPOS_DIR=/home/opnfv/repos
23 ARG FUNCTEST_BASE_DIR=/home/opnfv/functest
24 ARG FUNCTEST_CONF_DIR=${FUNCTEST_BASE_DIR}/conf
25 ARG FUNCTEST_DATA_DIR=${FUNCTEST_BASE_DIR}/data
26 ARG FUNCTEST_IMAGES_DIR=${FUNCTEST_BASE_DIR}/images
27 ARG FUNCTEST_RESULTS_DIR=${FUNCTEST_BASE_DIR}/results
28 ARG FUNCTEST_DIR=/usr/local/lib/python2.7/dist-packages/functest/
29 ARG REPOS_VNFS_DIR=${REPOS_DIR}/vnfs
30
31 # Environment variables
32 ENV HOME /home/opnfv
33 ENV CONFIG_FUNCTEST_YAML ${FUNCTEST_DIR}/ci/config_functest.yaml
34 ENV REPOS_DIR ${HOME}/repos
35 ENV creds ${FUNCTEST_CONF_DIR}/openstack.creds
36
37 WORKDIR ${HOME}
38
39 # Packaged dependencies
40 RUN apt-get update && apt-get install -y \
41 build-essential \
42 bundler \
43 crudini \
44 curl \
45 gcc \
46 git \
47 libffi-dev \
48 libgmp3-dev \
49 libpq-dev \
50 libssl-dev \
51 libxml2-dev \
52 libxslt-dev \
53 libzmq3-dev \
54 python-dev \
55 python-mock \
56 python-pip \
57 postgresql \
58 ruby1.9.1-dev \
59 ssh \
60 sshpass \
61 wget \
62 --no-install-recommends
63
64 RUN pip install --upgrade pip && easy_install -U setuptools==30.0.0
65
66 RUN mkdir -p ${REPOS_VNFS_DIR} \
67     && mkdir -p ${FUNCTEST_BASE_DIR}/results \
68     && mkdir -p ${FUNCTEST_CONF_DIR} \
69     && mkdir -p ${FUNCTEST_DATA_DIR} \
70     && mkdir -p ${FUNCTEST_IMAGES_DIR} \
71     && mkdir -p /root/.ssh \
72     && chmod 700 /root/.ssh
73
74 RUN git config --global http.sslVerify false
75
76 COPY thirdparty-requirements.txt thirdparty-requirements.txt
77 RUN wget -q -O- https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=stable/ocata | \
78         sed /^tempest===.*$/d > upper-constraints.txt && \
79     pip install -cupper-constraints.txt \
80         git+https://gerrit.opnfv.org/gerrit/functest@$BRANCH#egg=functest \
81         git+https://gerrit.opnfv.org/gerrit/releng@$BRANCH#egg=opnfv\&subdirectory=modules \
82         git+https://gerrit.opnfv.org/gerrit/snaps@$BRANCH#egg=snaps \
83         -r thirdparty-requirements.txt && \
84     rm thirdparty-requirements.txt upper-constraints.txt
85
86 # OPNFV repositories
87 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/copper ${REPOS_DIR}/copper
88 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/domino ${REPOS_DIR}/domino
89 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/doctor ${REPOS_DIR}/doctor
90 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/promise ${REPOS_DIR}/promise
91 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/netready ${REPOS_DIR}/netready
92 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/fds ${REPOS_DIR}/fds
93
94 # other repositories
95 RUN git clone --depth 1 -b $ODL_TAG https://git.opendaylight.org/gerrit/p/integration/test.git ${REPOS_DIR}/odl_test
96 RUN git clone --depth 1 -b $VIMS_TAG https://github.com/boucherv-orange/clearwater-live-test ${REPOS_VNFS_DIR}/vims-test
97 RUN git clone --depth 1 -b $VROUTER_TAG https://github.com/oolorg/opnfv-functest-vrouter.git ${REPOS_VNFS_DIR}/vrouter
98 RUN git clone --depth 1 https://github.com/wuwenbin2/OnosSystemTest.git ${REPOS_DIR}/onos
99
100 RUN wget -q https://git.openstack.org/cgit/openstack/rally/plain/install_rally.sh?h=${RALLY_TAG} -O install_rally.sh \
101     && bash install_rally.sh --branch ${RALLY_TAG} --yes && rm install_rally.sh
102
103 RUN add_images.sh
104
105 RUN gpg --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
106 RUN curl -L https://get.rvm.io | bash -s stable
107
108 # SFC integration
109 RUN /bin/bash -c ". /usr/local/lib/python2.7/dist-packages/sfc/tests/functest/setup_scripts/tacker_client_install.sh"
110
111 # refstack-client integration
112 RUN wget -q https://raw.githubusercontent.com/openstack/refstack-client/master/setup_env \
113     && bash setup_env -t ${REFSTACK_TAG} && rm setup_env
114 RUN ln -s ${HOME}/.tempest /usr/local/lib/python2.7/dist-packages/.tempest
115
116 RUN /bin/bash -c ". /etc/profile.d/rvm.sh \
117     && cd ${REPOS_VNFS_DIR}/vims-test \
118     && rvm autolibs enable"
119 RUN /bin/bash -c ". /etc/profile.d/rvm.sh \
120     && cd ${REPOS_VNFS_DIR}/vims-test \
121     && rvm install 1.9.3"
122 RUN /bin/bash -c ". /etc/profile.d/rvm.sh \
123     && cd ${REPOS_VNFS_DIR}/vims-test \
124     && rvm use 1.9.3"
125 RUN /bin/bash -c ". /etc/profile.d/rvm.sh \
126     && cd ${REPOS_VNFS_DIR}/vims-test \
127     && bundle install"
128
129 RUN sh -c 'curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -' \
130     && sudo apt-get install -y nodejs \
131     && cd ${REPOS_DIR}/promise && sudo npm -g install npm@latest \
132     && cd ${REPOS_DIR}/promise/source && npm install
133
134 RUN echo ". ${FUNCTEST_DIR}/cli/functest-complete.sh" >> ${HOME}/.bashrc