Keep the promise working dir in /src
[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 ODL_TAG=release/beryllium-sr4
18 ARG OPENSTACK_TAG=stable/ocata
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 CONFIG_FUNCTEST_YAML ${FUNCTEST_DIR}/ci/config_functest.yaml
33 ENV REPOS_DIR ${REPOS_DIR}
34 ENV creds ${FUNCTEST_CONF_DIR}/openstack.creds
35
36 # Packaged dependencies
37 RUN apt-get update && apt-get install -y \
38 build-essential \
39 bundler \
40 crudini \
41 curl \
42 gcc \
43 git \
44 libffi-dev \
45 libgmp3-dev \
46 libpq-dev \
47 libssl-dev \
48 libxml2-dev \
49 libxslt-dev \
50 libzmq3-dev \
51 python-dev \
52 python-mock \
53 python-pip \
54 postgresql \
55 ruby1.9.1-dev \
56 ssh \
57 sshpass \
58 wget \
59 --no-install-recommends
60
61 RUN pip install --upgrade pip && easy_install -U setuptools==30.0.0
62
63 RUN mkdir -p ${REPOS_VNFS_DIR} \
64     && mkdir -p ${FUNCTEST_BASE_DIR}/results \
65     && mkdir -p ${FUNCTEST_CONF_DIR} \
66     && mkdir -p ${FUNCTEST_DATA_DIR} \
67     && mkdir -p ${FUNCTEST_IMAGES_DIR} \
68     && mkdir -p /root/.ssh \
69     && chmod 700 /root/.ssh
70
71 RUN git config --global http.sslVerify false
72
73 COPY thirdparty-requirements.txt thirdparty-requirements.txt
74 RUN wget -q -O- https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=$OPENSTACK_TAG | \
75         sed -E s/^tempest==+\(.*\)$/-e\ git+https:\\/\\/github.com\\/openstack\\/tempest@\\1#egg=tempest/ \
76         > upper-constraints.txt && \
77     pip install --src /src -cupper-constraints.txt \
78         -chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=$BRANCH \
79         git+https://gerrit.opnfv.org/gerrit/functest@$BRANCH#egg=functest \
80         -rthirdparty-requirements.txt && \
81     mkdir -p /etc/rally && \
82     printf "[database]\nconnection = 'sqlite:////var/lib/rally/database/rally.sqlite'" > /etc/rally/rally.conf && \
83     mkdir -p /var/lib/rally/database && rally-manage db create && \
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 /src/copper
88 RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/domino /src/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/fds /src/fds
91
92 # other repositories
93 RUN git clone --depth 1 -b $ODL_TAG https://git.opendaylight.org/gerrit/p/integration/test.git /src/odl_test
94 RUN git clone --depth 1 -b $VIMS_TAG https://github.com/boucherv-orange/clearwater-live-test ${REPOS_VNFS_DIR}/vims-test
95 RUN git clone --depth 1 -b $VROUTER_TAG https://github.com/oolorg/opnfv-functest-vrouter.git ${REPOS_VNFS_DIR}/vrouter
96 RUN git clone --depth 1 https://github.com/wuwenbin2/OnosSystemTest.git ${REPOS_DIR}/onos
97
98 RUN gpg --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
99 RUN curl -L https://get.rvm.io | bash -s stable
100
101 # SFC integration
102 RUN /bin/bash -c ". /usr/local/lib/python2.7/dist-packages/sfc/tests/functest/setup_scripts/tacker_client_install.sh"
103
104 # Install tempest venv and create symlink for running refstack-client
105 RUN ln -s /src/tempest /src/refstack-client/.tempest \
106     && virtualenv --system-site-packages /src/tempest/.venv
107
108 RUN /bin/bash -c ". /etc/profile.d/rvm.sh \
109     && cd ${REPOS_VNFS_DIR}/vims-test \
110     && rvm autolibs enable"
111 RUN /bin/bash -c ". /etc/profile.d/rvm.sh \
112     && cd ${REPOS_VNFS_DIR}/vims-test \
113     && rvm install 1.9.3"
114 RUN /bin/bash -c ". /etc/profile.d/rvm.sh \
115     && cd ${REPOS_VNFS_DIR}/vims-test \
116     && rvm use 1.9.3"
117 RUN /bin/bash -c ". /etc/profile.d/rvm.sh \
118     && cd ${REPOS_VNFS_DIR}/vims-test \
119     && bundle install"
120
121 RUN sh -c 'curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -' \
122     && sudo apt-get install -y nodejs \
123     && cd /src/promise && sudo npm -g install npm@latest \
124     && cd /src/promise/source && npm install
125
126 RUN echo ". ${FUNCTEST_DIR}/cli/functest-complete.sh" >> /root/.bashrc