Dockerfile 622 B

1234567891011121314151617
  1. FROM rhel7
  2. MAINTAINER Aaron Weitekamp <aweiteka@redhat.com>
  3. RUN yum -y install http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
  4. # Not sure if all of these packages are necessary
  5. # only git and ansible are known requirements
  6. RUN yum install -y --enablerepo rhel-7-server-extras-rpms net-tools bind-utils git ansible
  7. ADD ./ /opt/openshift-ansible/
  8. ENTRYPOINT ["/usr/bin/ansible-playbook"]
  9. CMD ["/opt/openshift-ansible/playbooks/byo/config.yml"]
  10. 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