Update BMRA image and pip version for CentOS7
[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 --no-cache-dir pip==9.0.3 && \
9     pip install --no-cache-dir ansible==2.9.17 jmespath && \
10     pip install --no-cache-dir jinja2 --upgrade
11
12 CMD ["bash"]