JIRA: DOVETAIL-515
correct dockerfile, git clone from dovetail
Change-Id: I1dee7f8ae5278f55bcf5928bbf88cdb079388494
Signed-off-by: grakiss <grakiss.wanglei@huawei.com>
MAINTAINER SerenaFeng <feng.xiaowei@zte.com.cn>
LABEL version="v1" description="OPNFV TestAPI Docker container"
+ARG BRANCH=master
+ARG COMMIT_ID=master
+
ENV HOME /home
# Packaged dependencies
crudini \
--no-install-recommends
+
+WORKDIR /home
+
RUN pip install --upgrade pip
RUN git config --global http.sslVerify false
-RUN git clone https://github.com/grakiss888/testapi.git /home/testapi
+
+RUN git clone https://gerrit.opnfv.org/gerrit/dovetail.git
+
+WORKDIR /home/dovetail
+RUN git checkout -f $COMMIT_ID
+
+RUN mkdir -p /home/testapi
+RUN cp -rf /home/dovetail/cvp/* /home/testapi
WORKDIR /home/testapi/
RUN pip install -r requirements.txt
MAINTAINER Leo Wang <grakiss.wanglei@huawei.com>
LABEL version="v1" description="CVP nginx"
+ARG BRANCH=master
+ARG COMMIT_ID=master
ENV HOME /home
WORKDIR /home
RUN apt-get install -y git nginx supervisor
-RUN git clone http://github.com/grakiss888/testapi
+RUN git config --global http.sslVerify false
+RUN git clone https://gerrit.opnfv.org/gerrit/dovetail.git
+
+WORKDIR /home/dovetail
+RUN git checkout -f $COMMIT_ID
+
+RUN mkdir -p /home/testapi
+
+RUN cp -rf /home/dovetail/cvp/* /home/testapi
RUN mkdir /www
RUN cp -r /home/testapi/3rd_party/static /www/