Dockerfile 1.8 KB

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