Dockerfile 1.6 KB

123456789101112131415161718192021222324252627282930313233
  1. # Using playbook2image as a base
  2. # See https://github.com/aweiteka/playbook2image for details on the image
  3. # including documentation for the settings/env vars referenced below
  4. FROM docker.io/aweiteka/playbook2image:latest
  5. MAINTAINER OpenShift Team <dev@lists.openshift.redhat.com>
  6. LABEL name="openshift-ansible" \
  7. summary="OpenShift's installation and configuration tool" \
  8. description="A containerized openshift-ansible image to let you run playbooks to install, upgrade, maintain and check an OpenShift cluster" \
  9. url="https://github.com/openshift/openshift-ansible" \
  10. io.k8s.display-name="openshift-ansible" \
  11. io.k8s.description="A containerized openshift-ansible image to let you run playbooks to install, upgrade, maintain and check an OpenShift cluster" \
  12. io.openshift.expose-services="" \
  13. io.openshift.tags="openshift,install,upgrade,ansible"
  14. # The playbook to be run is specified via the PLAYBOOK_FILE env var.
  15. # This sets a default of openshift_facts.yml as it's an informative playbook
  16. # that can help test that everything is set properly (inventory, sshkeys)
  17. ENV PLAYBOOK_FILE=playbooks/byo/openshift_facts.yml \
  18. OPTS="-v" \
  19. INSTALL_OC=true
  20. # playbook2image's assemble script expects the source to be available in
  21. # /tmp/src (as per the source-to-image specs) so we import it there
  22. ADD . /tmp/src
  23. # Running the 'assemble' script provided by playbook2image will install
  24. # dependencies specified in requirements.txt and install the 'oc' client
  25. # as per the INSTALL_OC environment setting above
  26. RUN /usr/libexec/s2i/assemble
  27. CMD [ "/usr/libexec/s2i/run" ]