7b30ba5f8d58f868f96673b261e3adc1bb0f1da4
[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 pip==9.0.3 && \
9     pip install ansible==2.9.6 jmespath && \
10     pip install jinja2 --upgrade
11
12 CMD ["bash"]