Dockerfile 2.1 KB

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