123456789101112131415161718192021222324252627282930313233343536373839404142 |
- FROM docker.io/aweiteka/playbook2image:latest
- MAINTAINER OpenShift Team <dev@lists.openshift.redhat.com>
- LABEL name="openshift-ansible" \
- summary="OpenShift's installation and configuration tool" \
- description="A containerized openshift-ansible image to let you run playbooks to install, upgrade, maintain and check an OpenShift cluster" \
- url="https://github.com/openshift/openshift-ansible" \
- io.k8s.display-name="openshift-ansible" \
- io.k8s.description="A containerized openshift-ansible image to let you run playbooks to install, upgrade, maintain and check an OpenShift cluster" \
- io.openshift.expose-services="" \
- io.openshift.tags="openshift,install,upgrade,ansible"
- USER root
- RUN INSTALL_PKGS="skopeo" && \
- yum install -y --setopt=tsflags=nodocs $INSTALL_PKGS && \
- rpm -V $INSTALL_PKGS && \
- yum clean all
- USER ${USER_UID}
- ENV PLAYBOOK_FILE=playbooks/byo/openshift_facts.yml \
- OPTS="-v" \
- INSTALL_OC=true
- ADD . /tmp/src
- RUN /usr/libexec/s2i/assemble
- CMD [ "/usr/libexec/s2i/run" ]
|