Dockerfile 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 python-dns pyOpenSSL python2-cryptography openssl java-1.8.0-openjdk-headless python2-passlib httpd-tools openssh-clients origin-clients iproute" \
  8. && yum install -y --setopt=tsflags=nodocs $INSTALL_PKGS \
  9. && EPEL_PKGS="python2-boto python2-boto3 python2-crypto google-cloud-sdk-183.0.0 which python2-pip.noarch" \
  10. && EPEL_TESTING_PKGS="ansible" \
  11. && yum install -y epel-release \
  12. && yum install -y --setopt=tsflags=nodocs $EPEL_PKGS \
  13. && yum install -y --setopt=tsflags=nodocs --enablerepo=epel-testing $EPEL_TESTING_PKGS \
  14. && rpm -V $INSTALL_PKGS $EPEL_PKGS $EPEL_TESTING_PKGS \
  15. && pip install apache-libcloud~=2.2.1 \
  16. && yum clean all
  17. LABEL name="openshift/origin-ansible" \
  18. summary="OpenShift's installation and configuration tool" \
  19. description="A containerized openshift-ansible image to let you run playbooks to install, upgrade, maintain and check an OpenShift cluster" \
  20. url="https://github.com/openshift/openshift-ansible" \
  21. io.k8s.display-name="openshift-ansible" \
  22. io.k8s.description="A containerized openshift-ansible image to let you run playbooks to install, upgrade, maintain and check an OpenShift cluster" \
  23. io.openshift.expose-services="" \
  24. io.openshift.tags="openshift,install,upgrade,ansible" \
  25. atomic.run="once"
  26. ENV USER_UID=1001 \
  27. HOME=/opt/app-root/src \
  28. WORK_DIR=/usr/share/ansible/openshift-ansible \
  29. OPTS="-v"
  30. # Add image scripts and files for running as a system container
  31. COPY images/installer/root /
  32. # Include playbooks, roles, plugins, etc. from this repo
  33. COPY . ${WORK_DIR}
  34. RUN /usr/local/bin/user_setup \
  35. && rm /usr/local/bin/usage.ocp
  36. USER ${USER_UID}
  37. WORKDIR ${WORK_DIR}
  38. ENTRYPOINT [ "/usr/local/bin/entrypoint" ]
  39. CMD [ "/usr/local/bin/run" ]