diff options
author | Michael Chapman <woppin@gmail.com> | 2016-08-12 02:02:51 +1000 |
---|---|---|
committer | Michael Chapman <woppin@gmail.com> | 2016-08-12 02:05:33 +1000 |
commit | 7613b8b1d4b6f1048392d54afe8a6a3a9a4da6bd (patch) | |
tree | 42db30c4578dbc5c7c58c8ec60bd4b7e685764d4 /docker/Dockerfile | |
parent | fe1cdb02640ddf9baae6d09a949a4648264dd482 (diff) |
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 <woppin@gmail.com>
Diffstat (limited to 'docker/Dockerfile')
-rw-r--r-- | docker/Dockerfile | 1 |
1 files changed, 1 insertions, 0 deletions
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 |