Align license headers with REUSE guidelines
[kuberef.git] / sw_config / bmra / Dockerfile
1 # SPDX-FileCopyrightText: 2021 Anuket contributors
2 #
3 # SPDX-License-Identifier: Apache-2.0
4
5 FROM centos:7
6 MAINTAINER "Rihab Banday <rihab.banday@ericsson.com>"
7
8 #Install tools needed by BMRA Ansible playbooks
9 RUN yum -y update && \
10     yum -y install git epel-release python36 python-netaddr && \
11     yum -y install python-pip && \
12     pip install --no-cache-dir pip==9.0.3 && \
13     pip install --no-cache-dir ansible==2.9.17 jmespath && \
14     pip install --no-cache-dir jinja2 --upgrade
15
16 CMD ["bash"]