blob: d1c8b24b5a167f946ae768b26306102dfc7e37e9 (
plain)
1
2
3
4
5
6
7
8
9
10
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"]
|