diff options
Diffstat (limited to 'docker/Dockerfile.web')
-rw-r--r-- | docker/Dockerfile.web | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docker/Dockerfile.web b/docker/Dockerfile.web index 9f992df..438ada6 100644 --- a/docker/Dockerfile.web +++ b/docker/Dockerfile.web @@ -7,7 +7,7 @@ FROM ubuntu:16.04 MAINTAINER Leo Wang <grakiss.wanglei@huawei.com> -LABEL version="v1" description="CVP nginx" +LABEL version="v2" description="OVP nginx" ARG BRANCH=master @@ -19,14 +19,14 @@ RUN apt-get update RUN apt-get install -y git nginx supervisor RUN git config --global http.sslVerify false -RUN git clone https://gerrit.opnfv.org/gerrit/dovetail.git +RUN git clone https://gerrit.opnfv.org/gerrit/dovetail-webportal -WORKDIR /home/dovetail +WORKDIR /home/dovetail-webportal RUN git checkout -f $BRANCH RUN mkdir -p /home/testapi -RUN cp -rf /home/dovetail/cvp/* /home/testapi +RUN cp -rf /home/dovetail-webportal/* /home/testapi RUN mkdir /www RUN cp -r /home/testapi/3rd_party/static /www/ |