Dockerfile for QTIP docker container 79/4979/2
authorNauman_Ahad <Nauman_Ahad@dell.com>
Mon, 21 Dec 2015 22:41:44 +0000 (03:41 +0500)
committerNauman_Ahad <Nauman_Ahad@dell.com>
Tue, 22 Dec 2015 07:53:08 +0000 (12:53 +0500)
Dockerfile for creating QTIP docker image
Installs needed dependencies to run QTIP

JIRA: QTIP-48

Change-Id: I29083856d9a22d35eb983249059a176dc29f34e7
Signed-off-by: Nauman_Ahad <Nauman_Ahad@dell.com>
docker/Dockerfile [new file with mode: 0644]

diff --git a/docker/Dockerfile b/docker/Dockerfile
new file mode 100644 (file)
index 0000000..b0d512f
--- /dev/null
@@ -0,0 +1,50 @@
+##########################################
+#####Docker container for QTIP############
+##########################################
+
+
+FROM ubuntu:14.04
+MAINTAINER Nauman Ahad <Nauman_Ahad@dell.com>
+LABEL version="0.1" description="OPNFV QTIP Docker container"
+
+
+
+
+ENV repos_dir /home/opnfv/repos
+WORKDIR /home/opnfv
+
+
+#Packaged Dependencies
+
+
+RUN apt-get update && apt-get install -y \
+software-properties-common \
+wget \
+git \
+gcc \
+ssh \
+expect \
+python-dev \
+python-pip \
+--no-install-recommends
+
+RUN apt-add-repository ppa:ansible/ansible -y
+RUN apt-key update -y
+RUN apt-get update -y
+RUN apt-get install ansible --force-yes -y
+
+
+
+RUN mkdir -p ${repos_dir}
+RUN mkdir -p /root/.ssh
+RUN chmod 700 /root/.ssh
+
+#Cloning Repos
+
+RUN git config --global http.sslVerify false
+RUN git clone https://gerrit.opnfv.org/gerrit/qtip $repos_dir/qtip
+RUN git clone https://gerrit.opnfv.org/gerrit/releng $repos_dir/releng
+
+RUN pip install -r $repos_dir/qtip/docker/packages.pip
+
+