Dockerfile 1008 B

1234567891011121314151617181920212223242526
  1. FROM rhel7
  2. MAINTAINER Troy Dawson <tdawson@redhat.com>
  3. LABEL Name="openshift3/installer"
  4. LABEL Vendor="Red Hat" License=GPLv2+
  5. LABEL Version="v3.1.1.901"
  6. LABEL Release="6"
  7. LABEL BZComponent="aos3-installation-docker"
  8. LABEL Architecture="x86_64"
  9. LABEL io.k8s.description="Ansible code and playbooks for installing Openshift Container Platform." \
  10. io.k8s.display-name="Openshift Installer" \
  11. io.openshift.tags="openshift,installer"
  12. RUN INSTALL_PKGS="atomic-openshift-utils" && \
  13. yum install -y --enablerepo=rhel-7-server-ose-3.2-rpms $INSTALL_PKGS && \
  14. rpm -V $INSTALL_PKGS && \
  15. yum clean all
  16. # Expect user to mount a workdir for container output (installer.cfg, hosts inventory, ansible log)
  17. VOLUME /var/lib/openshift-installer/
  18. WORKDIR /var/lib/openshift-installer/
  19. RUN mkdir -p /var/lib/openshift-installer/
  20. ENTRYPOINT ["/usr/bin/atomic-openshift-installer", "-c", "/var/lib/openshift-installer/installer.cfg", "--ansible-log-path", "/var/lib/openshift-installer/ansible.log"]