Dockerfile 1.9 KB

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