Dockerfile of the container that installs BMRA
[kuberef.git] / sw_config / bmra / Dockerfile
1 FROM centos:7
2 MAINTAINER "Rihab Banday <rihab.banday@ericsson.com>"
3
4 #Install tools needed by BMRA Ansible playbooks
5 RUN yum -y update && \
6     yum -y install git epel-release python36 python-netaddr && \
7     yum -y install python-pip && \
8     pip install ansible==2.7.16 jmespath && \
9     pip install jinja2 --upgrade
10
11 CMD ["bash"]