diff options
Diffstat (limited to 'cvp/docker/Dockerfile')
-rw-r--r-- | cvp/docker/Dockerfile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/cvp/docker/Dockerfile b/cvp/docker/Dockerfile index fa39ac65..e0cb32fe 100644 --- a/cvp/docker/Dockerfile +++ b/cvp/docker/Dockerfile @@ -28,7 +28,6 @@ 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 @@ -41,24 +40,29 @@ wget \ python-dev \ python-pip \ crudini \ +libffi-dev \ +libssl-dev \ +libxml2-dev \ +libxslt1-dev \ --no-install-recommends WORKDIR /home -RUN pip install --upgrade pip +#RUN pip install --upgrade pip 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 git checkout -f $BRANCH RUN mkdir -p /home/testapi RUN cp -rf /home/dovetail/cvp/* /home/testapi -WORKDIR /home/testapi/ +WORKDIR /home/dovetail/cvp RUN pip install -r requirements.txt RUN bash install.sh + CMD ["bash", "docker/start-server.sh"] |