From: Michael Chapman Date: Thu, 11 Aug 2016 16:02:51 +0000 (+1000) Subject: Add conf directory to Dockerfile X-Git-Tag: colorado.1.0~159 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F61%2F18461%2F1;p=functest.git Add conf directory to Dockerfile Currently mounting the credentials file cannot be done at launch time since the parent folder doesn't exist. This is usually not noticed because prepare env will get the credentials file via ssh, but the docker mount will silently fail. Change-Id: I2e33c3c218a01ac6e1e5bf09609083dec3647b95 Signed-off-by: Michael Chapman --- diff --git a/docker/Dockerfile b/docker/Dockerfile index 57c10f3bb..04ebf2c6d 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -64,6 +64,7 @@ RUN pip install --upgrade pip RUN mkdir -p ${repos_dir} RUN mkdir -p /home/opnfv/functest/results +RUN mkdir -p /home/opnfv/functest/conf RUN mkdir -p /root/.ssh RUN chmod 700 /root/.ssh