From 7195376bbbd8cd15f76181c5a6d5855ae7a79bf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20=C4=8Cajka?= Date: Mon, 21 Jan 2019 08:58:38 +0100 Subject: [PATCH] Initial commit --- Dockerfile | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..a85f47b --- /dev/null +++ b/Dockerfile @@ -0,0 +1,28 @@ +# +# This is the official OpenShift CLI image. It can be used to get a CLI environment +# for OpenShift. +# +# The standard name for this image is openshift/origin-hyperkube +# +FROM registry.fedoraproject.org/f29/origin-base:latest + +ENV NAME=origin-hyperkube \ + VERSION=3.11 \ + ARCH=x86_64 + +RUN INSTALL_PKGS="origin-hyperkube" && \ + dnf install -y ${INSTALL_PKGS} && \ + rpm -V ${INSTALL_PKGS} && \ + dnf clean all + +LABEL io.k8s.display-name="OpenShift Kubernetes Server Commands" \ + io.k8s.description="OpenShift is a platform for developing, building, and deploying containerized applications." \ + io.openshift.tags="openshift,hyperkube" \ + summary="OpenShift is a platform for developing, building, and deploying containerized applications." \ + maintainer="Jakub Cajka " \ + License="GPLv2+" \ + name="$FGC/$NAME" \ + com.redhat.component="$NAME" \ + version="$VERSION" \ + architecture="$ARCH" \ + usage="OpenShift is a platform for developing, building, and deploying containerized applications."