summaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: 02ab516804c6ddf25d97b7697409cbd4df1aff1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM rhel7

MAINTAINER Aaron Weitekamp <aweiteka@redhat.com>

RUN yum -y install http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm

# Not sure if all of these packages are necessary
# only git and ansible are known requirements
RUN yum install -y --enablerepo rhel-7-server-extras-rpms net-tools bind-utils git ansible pyOpenSSL

ADD ./  /opt/openshift-ansible/

ENTRYPOINT ["/usr/bin/ansible-playbook"]

CMD ["/opt/openshift-ansible/playbooks/byo/config.yml"]

LABEL RUN docker run -it --rm --privileged --net=host -v ~/.ssh:/root/.ssh -v /etc/ansible:/etc/ansible --name NAME -e NAME=NAME -e IMAGE=IMAGE IMAGE