From b15f56daad1c9ae22a7326ec5185a4b5e362593a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20=C4=8Cajka?= Date: Thu, 29 Nov 2018 12:44:37 +0100 Subject: [PATCH 1/2] Inital 3.11 image --- Dockerfile | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..35b6099 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,34 @@ +# +# This is the base image from which all OpenShift Origin images inherit. Only packages +# common to all downstream images should be here. +# +# The standard name for this image is openshift/origin-base +# +FROM registry.fedoraproject.org/fedora:29 + +ENV NAME=origin-base \ + VERSION=3.11 \ + ARCH=x86_64 + +RUN INSTALL_PKGS=" \ + which tar wget hostname util-linux \ + socat tree findutils lsof bind-utils \ + " && \ + dnf install -y ${INSTALL_PKGS} && \ + dnf clean all && \ + mkdir -p /var/lib/origin + +LABEL io.k8s.display-name="OpenShift Origin Fedora 29 Base" \ + io.k8s.description="This is the base image from which all OpenShift Origin images inherit." \ + io.openshift.tags="openshift,base" \ + summary="This is the base image from which all OpenShift Origin images inherit." \ + maintainer="Jakub Cajka " \ + License="GPLv2+" \ + name="$FGC/$NAME" \ + com.redhat.component="$NAME" \ + version="$VERSION" \ + architecture="$ARCH" \ + usage="This is the base image from which all OpenShift Origin images inherit." + +COPY README.md README.md + From 6518ef42811128e24f7d0eb4b6996da72f60d477 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20=C4=8Cajka?= Date: Fri, 8 Mar 2019 13:21:03 +0100 Subject: [PATCH 2/2] Enable aarch64 for a container build --- container.yaml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 container.yaml diff --git a/container.yaml b/container.yaml new file mode 100644 index 0000000..1d2329e --- /dev/null +++ b/container.yaml @@ -0,0 +1,4 @@ +platforms: + only: + - x86_64 + - aarch64