Dockerfile 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. FROM centos:7
  2. MAINTAINER OpenShift Team <dev@lists.openshift.redhat.com>
  3. USER root
  4. # Add origin repo for including the oc client
  5. COPY images/installer/origin-extra-root /
  6. # install ansible and deps
  7. RUN INSTALL_PKGS="python-lxml pyOpenSSL python2-cryptography openssl java-1.8.0-openjdk-headless python2-passlib httpd-tools openssh-clients origin-clients" \
  8. && yum install -y --setopt=tsflags=nodocs $INSTALL_PKGS \
  9. && EPEL_PKGS="ansible python2-boto" \
  10. && yum install -y epel-release \
  11. && yum install -y --setopt=tsflags=nodocs $EPEL_PKGS \
  12. && rpm -V $INSTALL_PKGS $EPEL_PKGS \
  13. && yum clean all
  14. LABEL name="openshift/origin-ansible" \
  15. summary="OpenShift's installation and configuration tool" \
  16. description="A containerized openshift-ansible image to let you run playbooks to install, upgrade, maintain and check an OpenShift cluster" \
  17. url="https://github.com/openshift/openshift-ansible" \
  18. io.k8s.display-name="openshift-ansible" \
  19. io.k8s.description="A containerized openshift-ansible image to let you run playbooks to install, upgrade, maintain and check an OpenShift cluster" \
  20. io.openshift.expose-services="" \
  21. io.openshift.tags="openshift,install,upgrade,ansible" \
  22. atomic.run="once"
  23. ENV USER_UID=1001 \
  24. HOME=/opt/app-root/src \
  25. WORK_DIR=/usr/share/ansible/openshift-ansible \
  26. OPTS="-v"
  27. # Add image scripts and files for running as a system container
  28. COPY images/installer/root /
  29. # Include playbooks, roles, plugins, etc. from this repo
  30. COPY . ${WORK_DIR}
  31. RUN /usr/local/bin/user_setup \
  32. && rm /usr/local/bin/usage.ocp
  33. USER ${USER_UID}
  34. WORKDIR ${WORK_DIR}
  35. ENTRYPOINT [ "/usr/local/bin/entrypoint" ]
  36. CMD [ "/usr/local/bin/run" ]