Blame Dockerfile

ec2f2f1
#
ec2f2f1
# This is the base image from which all OpenShift Origin images inherit. Only packages
ec2f2f1
# common to all downstream images should be here.
ec2f2f1
#
ec2f2f1
# The standard name for this image is openshift/origin-base
ec2f2f1
#
ec2f2f1
FROM registry.fedoraproject.org/fedora:27
ec2f2f1
ec2f2f1
ENV NAME=origin-base \
ec2f2f1
    VERSION=3.6 \
ec2f2f1
    ARCH=x86_64
ec2f2f1
ec2f2f1
RUN INSTALL_PKGS=" \
ec2f2f1
      which git tar wget hostname util-linux bsdtar \
ec2f2f1
      socat ethtool device-mapper iptables tree findutils nmap-ncat e2fsprogs \
ec2f2f1
      xfsprogs lsof device-mapper-persistent-data ceph-common \
ec2f2f1
      " && \
ec2f2f1
    dnf install -y ${INSTALL_PKGS} && \
2fe8ffd
#    rpm -V ${INSTALL_PKGS} && \
ec2f2f1
    dnf clean all && \
ec2f2f1
    mkdir -p /var/lib/origin
ec2f2f1
ec2f2f1
LABEL io.k8s.display-name="OpenShift Origin Fedora 27 Base" \
ec2f2f1
      io.k8s.description="This is the base image from which all OpenShift Origin images inherit." \
ec2f2f1
      io.openshift.tags="openshift,base" \
ec2f2f1
      summary="This is the base image from which all OpenShift Origin images inherit." \
211d3a5
      maintainer="Jakub Cajka <jcajka@fedoraproject.org>" \
ec2f2f1
      License="GPLv2+" \
ec2f2f1
      name="$FGC/$NAME" \
ec2f2f1
      com.redhat.component="$NAME" \
ec2f2f1
      version="$VERSION" \
ec2f2f1
      architecture="$ARCH" \
ec2f2f1
      usage="This is the base image from which all OpenShift Origin images inherit."
ec2f2f1