From 5166fa3772759fd55048badeb915c37abf5254fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20=C4=8Cajka?= Date: Tue, 22 Jan 2019 08:22:34 +0100 Subject: [PATCH] Initial commit --- Dockerfile | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..de44895 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,33 @@ +# +# This is the official OpenShift test image. It can be used to verify +# an installation of OpenShift completed successfully. +# +# The standard name for this image is openshift/origin-tests +# +FROM registry.fedoraproject.org/f29/origin-cli:latest + +ENV NAME=origin-tests \ + VERSION=3.11 \ + ARCH=x86_64 + +RUN INSTALL_PKGS=" \ + origin-tests \ + git \ + " && \ + dnf install -y ${INSTALL_PKGS} && \ + rpm -V ${INSTALL_PKGS} && \ + dnf clean all && \ + git config --system user.name test && \ + git config --system user.email test@test.com + +LABEL io.k8s.display-name="OpenShift End-to-End Tests" \ + io.k8s.description="OpenShift is a platform for developing, building, and deploying containerized applications." \ + io.openshift.tags="openshift,tests,e2e" \ + 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."