diff options
Diffstat (limited to 'sw_config/bmra/Dockerfile')
-rw-r--r-- | sw_config/bmra/Dockerfile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sw_config/bmra/Dockerfile b/sw_config/bmra/Dockerfile new file mode 100644 index 0000000..d1c8b24 --- /dev/null +++ b/sw_config/bmra/Dockerfile @@ -0,0 +1,11 @@ +FROM centos:7 +MAINTAINER "Rihab Banday <rihab.banday@ericsson.com>" + +#Install tools needed by BMRA Ansible playbooks +RUN yum -y update && \ + yum -y install git epel-release python36 python-netaddr && \ + yum -y install python-pip && \ + pip install ansible==2.7.16 jmespath && \ + pip install jinja2 --upgrade + +CMD ["bash"] |