From e5d1e4dfbd8952d51b2f0026f77bca06d5759250 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20=C4=8Cajka?= Date: Fri, 21 Sep 2018 14:41:42 +0200 Subject: [PATCH] Initial f28/3.9 commit --- Dockerfile | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..170ad45 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,34 @@ +# +# This is the official OpenShift Origin pod infrastructure image. It will stay running +# until terminated by a signal and is the heart of each running pod. It holds on to +# the network and IPC namespaces as containers come and go during the lifetime of the +# pod. +# +# The standard name for this image is openshift/origin-pod +FROM registry.fedoraproject.org/f28/origin:latest + +ENV NAME=origin-pod \ + VERSION=3.9 \ + ARCH=x86_64 + +RUN INSTALL_PKGS="origin-pod" && \ + dnf install -y ${INSTALL_PKGS} && \ + rpm -V ${INSTALL_PKGS} && \ + dnf clean all + +LABEL io.k8s.display-name="OpenShift Origin Pod Infrastructure" \ + io.k8s.description="This is a component of OpenShift Origin and holds on to the shared Linux namespaces within a Pod." \ + io.openshift.tags="openshift,pod" \ + summary="This is a component of OpenShift Origin and holds on to the shared Linux namespaces within a Pod." \ + maintainer="Jakub Cajka " \ + License="GPLv2+" \ + name="$FGC/$NAME" \ + com.redhat.component="$NAME" \ + version="$VERSION" \ + architecture="$ARCH" \ + usage="This is a component of OpenShift Origin and holds on to the shared Linux namespaces within a Pod." + +COPY README.md README.md + +USER 1001 +ENTRYPOINT ["/usr/bin/pod"]