diff options
Diffstat (limited to 'docker')
-rw-r--r-- | docker/Dockerfile | 5 | ||||
-rw-r--r-- | docker/ansible.cfg.default | 2 | ||||
-rw-r--r-- | docker/packages.pip | 8 |
3 files changed, 6 insertions, 9 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 9ed0980e..2adeba6e 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -45,12 +45,15 @@ RUN mkdir -p ${REPOS_DIR} RUN mkdir -p /root/.ssh RUN chmod 700 /root/.ssh +#Config ansible +COPY ansible.cfg.default /root/.ansible.cfg + #Cloning Repos RUN git config --global http.sslVerify false RUN git clone https://gerrit.opnfv.org/gerrit/qtip $REPOS_DIR/qtip RUN git clone https://gerrit.opnfv.org/gerrit/releng $REPOS_DIR/releng -RUN pip install -r $REPOS_DIR/qtip/docker/packages.pip +RUN pip install -r $REPOS_DIR/qtip/requirements.txt diff --git a/docker/ansible.cfg.default b/docker/ansible.cfg.default new file mode 100644 index 00000000..0451870a --- /dev/null +++ b/docker/ansible.cfg.default @@ -0,0 +1,2 @@ +[defaults] +callback_whitelist = profile_tasks diff --git a/docker/packages.pip b/docker/packages.pip deleted file mode 100644 index cc048389..00000000 --- a/docker/packages.pip +++ /dev/null @@ -1,8 +0,0 @@ -pyyaml==3.10 -python-neutronclient==2.6.0 -python-novaclient==2.28.1 -python-glanceclient==1.1.0 -python-cinderclient==1.4.0 -python-heatclient==0.6.0 -python-keystoneclient==1.6.0 -reportlab==3.0 |