diff options
author | Leo Wang <grakiss.wanglei@huawei.com> | 2016-09-14 04:11:07 -0400 |
---|---|---|
committer | Leo Wang <grakiss.wanglei@huawei.com> | 2016-09-19 22:37:03 -0400 |
commit | a4a2f38ff554089fe72136a9f933d57c33f16d71 (patch) | |
tree | 6ffaf34f65e2d3d64a6e0a79146f94c487c8b8e8 | |
parent | e7316237cc9f5b469c53682af6f57099d42a3279 (diff) |
add dockerfile of dovetail tool
JIRA:DOVETAIL-13
- add dockerfile
Change-Id: I82d74013fef9b9203b531a1ba944e014d77a25cd
Signed-off-by: Leo Wang <grakiss.wanglei@huawei.com>
-rw-r--r-- | docker/Dockerfile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile new file mode 100644 index 00000000..8e744e3b --- /dev/null +++ b/docker/Dockerfile @@ -0,0 +1,22 @@ +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 +WORKDIR /home/opnfv +ENV REPOS_DIR /home/opnfv/dovetail + +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 + |