From 7564a7a31dc5179347cf0fca1134ed2bc255db0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20=C4=8Cajka?= Date: Mon, 21 Jan 2019 13:24:30 +0100 Subject: [PATCH 1/3] Initial commit --- Dockerfile | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..6330c1f --- /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/f29/origin:latest + +ENV NAME=origin-pod \ + VERSION=3.11 \ + 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"] From 2133523a97fecf43c050cf45bad8eb38d2302717 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20=C4=8Cajka?= Date: Mon, 21 Jan 2019 13:40:38 +0100 Subject: [PATCH 2/3] Fix from statement --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6330c1f..8a9fc31 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ # pod. # # The standard name for this image is openshift/origin-pod -FROM registry.fedoraproject.org/f29/origin:latest +FROM registry.fedoraproject.org/f29/fedora:latest ENV NAME=origin-pod \ VERSION=3.11 \ From 6df2dd034bce2eeacccaf5e9793e6d37acd94200 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20=C4=8Cajka?= Date: Mon, 21 Jan 2019 13:44:24 +0100 Subject: [PATCH 3/3] Correct from --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8a9fc31..9714ff5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ # pod. # # The standard name for this image is openshift/origin-pod -FROM registry.fedoraproject.org/f29/fedora:latest +FROM registry.fedoraproject.org/fedora:29 ENV NAME=origin-pod \ VERSION=3.11 \