Dockerfile 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. USER root
  15. RUN INSTALL_PKGS="skopeo" && \
  16. yum install -y --setopt=tsflags=nodocs $INSTALL_PKGS && \
  17. rpm -V $INSTALL_PKGS && \
  18. yum clean all
  19. USER ${USER_UID}
  20. # The playbook to be run is specified via the PLAYBOOK_FILE env var.
  21. # This sets a default of openshift_facts.yml as it's an informative playbook
  22. # that can help test that everything is set properly (inventory, sshkeys)
  23. ENV PLAYBOOK_FILE=playbooks/byo/openshift_facts.yml \
  24. OPTS="-v" \
  25. INSTALL_OC=true
  26. # playbook2image's assemble script expects the source to be available in
  27. # /tmp/src (as per the source-to-image specs) so we import it there
  28. ADD . /tmp/src
  29. # Running the 'assemble' script provided by playbook2image will install
  30. # dependencies specified in requirements.txt and install the 'oc' client
  31. # as per the INSTALL_OC environment setting above
  32. RUN /usr/libexec/s2i/assemble
  33. CMD [ "/usr/libexec/s2i/run" ]