Dockerfile 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. FROM centos:7
  2. MAINTAINER OpenShift Team <dev@lists.openshift.redhat.com>
  3. USER root
  4. # install ansible and deps
  5. RUN INSTALL_PKGS="python-lxml pyOpenSSL python2-cryptography openssl java-1.8.0-openjdk-headless httpd-tools openssh-clients" \
  6. && yum install -y --setopt=tsflags=nodocs $INSTALL_PKGS \
  7. && EPEL_PKGS="ansible python-passlib python2-boto" \
  8. && yum install -y epel-release \
  9. && yum install -y --setopt=tsflags=nodocs $EPEL_PKGS \
  10. && rpm -q $INSTALL_PKGS $EPEL_PKGS \
  11. && yum clean all
  12. LABEL name="openshift/origin-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. atomic.run="once"
  21. ENV USER_UID=1001 \
  22. HOME=/opt/app-root/src \
  23. WORK_DIR=/usr/share/ansible/openshift-ansible \
  24. OPTS="-v"
  25. # Add image scripts and files for running as a system container
  26. COPY images/installer/root /
  27. # Include playbooks, roles, plugins, etc. from this repo
  28. COPY . ${WORK_DIR}
  29. RUN /usr/local/bin/user_setup \
  30. && rm /usr/local/bin/usage.ocp
  31. USER ${USER_UID}
  32. WORKDIR ${WORK_DIR}
  33. ENTRYPOINT [ "/usr/local/bin/entrypoint" ]
  34. CMD [ "/usr/local/bin/run" ]