summaryrefslogtreecommitdiffstats
path: root/docker/Dockerfile
blob: 187fbc9ec556037d33c882f6aba8fe0575c4f0cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
FROM ubuntu:14.04
MAINTAINER Leo Wang <grakiss.wanglei@huawei.com>
LABEL version="0.1" description="OPNFV Dovetail Docker Container"

ARG BRANCH=master

RUN \
    apt-get update \
&& \
    apt-get install -y \
        python-pip \
        git \
        apt-transport-https \
        --no-install-recommends \
&& \
    apt-get update &&  apt-get -y install docker.io \
&& \
    pip install pbr \
        pyyaml \
        click \
        jinja2 \
        six

ENV HOME /home/opnfv
ENV REPOS_DIR ${HOME}/dovetail
WORKDIR /home/opnfv

RUN \
    git config --global http.sslVerify false \
&& \
    git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/dovetail.git ${REPOS_DIR} \
&& \
    mkdir -p ${REPOS_DIR}/results \
&& \
    cd ${REPOS_DIR} \
&& \
    pip install .

WORKDIR ${REPOS_DIR}/dovetail