Dockerfile.rhel7 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. FROM rhel7.3:7.3-released
  2. MAINTAINER OpenShift Team <dev@lists.openshift.redhat.com>
  3. USER root
  4. # Playbooks, roles, and their dependencies are installed from packages.
  5. RUN INSTALL_PKGS="openshift-ansible atomic-openshift-clients python-boto python2-boto3 python2-crypto openssl java-1.8.0-openjdk-headless httpd-tools google-cloud-sdk" \
  6. && yum repolist > /dev/null \
  7. && yum-config-manager --enable rhel-7-server-ose-3.7-rpms \
  8. && yum-config-manager --enable rhel-7-server-rh-common-rpms \
  9. && yum install -y --setopt=tsflags=nodocs $INSTALL_PKGS \
  10. && rpm -q $INSTALL_PKGS \
  11. && yum clean all
  12. LABEL name="openshift3/ose-ansible" \
  13. summary="OpenShift's installation and configuration tool" \
  14. description="A containerized openshift-ansible image to let you run playbooks to install, upgrade, maintain and check an OpenShift cluster" \
  15. url="https://github.com/openshift/openshift-ansible" \
  16. io.k8s.display-name="openshift-ansible" \
  17. io.k8s.description="A containerized openshift-ansible image to let you run playbooks to install, upgrade, maintain and check an OpenShift cluster" \
  18. io.openshift.expose-services="" \
  19. io.openshift.tags="openshift,install,upgrade,ansible" \
  20. com.redhat.component="aos3-installation-docker" \
  21. version="v3.6.0" \
  22. release="1" \
  23. architecture="x86_64" \
  24. atomic.run="once"
  25. ENV USER_UID=1001 \
  26. HOME=/opt/app-root/src \
  27. WORK_DIR=/usr/share/ansible/openshift-ansible \
  28. ANSIBLE_CONFIG=/usr/share/ansible/openshift-ansible/ansible.cfg \
  29. OPTS="-v"
  30. # Add image scripts and files for running as a system container
  31. COPY root /
  32. RUN /usr/local/bin/user_setup \
  33. && mv /usr/local/bin/usage{.ocp,}
  34. USER ${USER_UID}
  35. WORKDIR ${WORK_DIR}
  36. ENTRYPOINT [ "/usr/local/bin/entrypoint" ]
  37. CMD [ "/usr/local/bin/run" ]