summaryrefslogtreecommitdiffstats
path: root/docker/Dockerfile
blob: 8d6883c1b0cb2035d09df0369183f2979245c7f2 (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
FROM ubuntu:14.04
MAINTAINER Leo Wang <grakiss.wanglei@huawei.com>
LABEL version="0.1" description="OPNFV Dovetail Docker Container"

RUN apt-get update && apt-get install -y \
docker.io \
python-pip \
git \
--no-install-recommends

RUN pip install pyyaml
RUN pip install click

ENV HOME /home/opnfv
ENV REPOS_DIR /home/opnfv/dovetail
WORKDIR /home/opnfv

RUN git config --global http.sslVerify false
RUN git clone https://gerrit.opnfv.org/gerrit/dovetail.git ${REPOS_DIR}

RUN mkdir -p ${REPOS_DIR}/results

WORKDIR /home/opnfv/dovetail/scripts