Dockerfile 2.2 KB

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