diff options
-rw-r--r-- | docker/Dockerfile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 8e744e3b..8d6883c1 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -12,11 +12,13 @@ RUN pip install pyyaml RUN pip install click ENV HOME /home/opnfv -WORKDIR /home/opnfv ENV REPOS_DIR /home/opnfv/dovetail +WORKDIR /home/opnfv 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 +WORKDIR /home/opnfv/dovetail/scripts + |