Namespace
adoptopenjdk
Image / Tag
openjdk8:aarch64-ubi-jre8u242-b08
Content Digest
sha256:391e530f1ff673d2fc3caeb7b1adb8190e4b1770301dcf059f7ab68497f1ead8
Details
Created

2020-04-03 20:36:01 UTC

Size

118 MB

Content Digest
Labels
  • architecture
    arm64
  • authoritative-source-url
    registry.access.redhat.com
  • build-date
    2020-03-02T17:47:58.148902
  • com.redhat.build-host
    arm64-osbs-13.prod.osbs.eng.bos.redhat.com
  • com.redhat.component
    ubi8-container
  • com.redhat.license_terms
    https://www.redhat.com/en/about/red-hat-end-user-license-agreements#UBI
  • description
    For more information on this image please see https://github.com/AdoptOpenJDK/openjdk-docker/blob/master/README.md
  • distribution-scope
    public
  • io.k8s.description
    The Universal Base Image is designed and engineered to be the base layer for all of your containerized applications, middleware and utilities. This base image is freely redistributable, but Red Hat only supports Red Hat technologies through subscriptions for Red Hat products. This image is maintained by Red Hat and updated regularly.
  • io.k8s.display-name
    Red Hat Universal Base Image 8
  • io.openshift.expose-services
  • io.openshift.tags
    base rhel8
  • maintainer
    Red Hat, Inc.
  • name
    AdoptOpenJDK Java
  • release
    8
  • run
    docker run --rm -ti <image_name:tag> /bin/bash
  • summary
    AdoptOpenJDK Docker Image for OpenJDK with hotspot and ubi
  • url
    https://access.redhat.com/containers/#/registry.access.redhat.com/ubi8/images/8.1-406
  • vcs-ref
    26f36bfa3e3a04c8c866b250924c1aefc34f01c9
  • vcs-type
    git
  • vendor
    AdoptOpenJDK
  • version
    jdk8u242-b08

Environment
JAVA_HOME

/opt/java/openjdk

JAVA_VERSION

jdk8u242-b08

LANG

en_US.UTF-8

LANGUAGE

en_US:en

LC_ALL

en_US.UTF-8

PATH

/opt/java/openjdk/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

container

oci


Layers

[#000] sha256:0f79ee203e3ee6e09408b2d1f8e9f791b4ea9b3b9e1d6008c7f18ca208996b80 - 58.02% (68.6 MB)

[#001] sha256:8b11858f96379f56159e49612a6e4ba3737909912c06d666425ae06692f3ecbe - 0.0% (1.54 KB)

[#002] sha256:ad5d50a3f4cc057086930c160a0de8548ae6e9519aa0bbbe6403e7b17c324802 - 8.6% (10.2 MB)

[#003] sha256:61d57e6dff6a16f12b6eb0578d9e5faf32856c08419bff76445bae4e540905c6 - 33.37% (39.5 MB)


History
2020-03-02 17:48:28 UTC (Imported from -)

2020-03-02 17:49:07 UTC

2020-04-03 20:35:40 UTC

/bin/sh -c #(nop) ENV LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=en_US.UTF-8

2020-04-03 20:35:55 UTC

/bin/sh -c dnf install -y openssl curl ca-certificates fontconfig glibc-langpack-en gzip tar && dnf update -y; dnf clean all

2020-04-03 20:35:56 UTC

/bin/sh -c #(nop) LABEL name=AdoptOpenJDK Java vendor=AdoptOpenJDK version=jdk8u242-b08 release=8 run=docker run --rm -ti <image_name:tag> /bin/bash summary=AdoptOpenJDK Docker Image for OpenJDK with hotspot and ubi description=For more information on this image please see https://github.com/AdoptOpenJDK/openjdk-docker/blob/master/README.md

2020-04-03 20:35:56 UTC

/bin/sh -c #(nop) ENV JAVA_VERSION=jdk8u242-b08

2020-04-03 20:36:00 UTC

/bin/sh -c set -eux; ARCH="$(uname -m)"; case "${ARCH}" in aarch64|arm64) ESUM='178b0b18ed8ca7552ee26848b417f0ef5ceababc56823aaf522e78c19579d751'; BINARY_URL='https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u242-b08/OpenJDK8U-jre_aarch64_linux_hotspot_jdk8u242-b08.tar.gz'; ;; armhf|armv7l) ESUM='33131c84240c64b5d733607f0fc81a55020a305ff4365e77a16df511c506435f'; BINARY_URL='https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u242-b08/OpenJDK8U-jre_arm_linux_hotspot_8u242b08.tar.gz'; ;; ppc64el|ppc64le) ESUM='0b34b855a205d7c00b6625075884b48f6b9fafe3288397116896c39a39220b74'; BINARY_URL='https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u242-b08/OpenJDK8U-jre_ppc64le_linux_hotspot_8u242b08.tar.gz'; ;; s390x) ESUM='a0e122c7ecd1cb8968cb4000923292db210fc7463f2ba4d764912de2e2489d15'; BINARY_URL='https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u242-b08/OpenJDK8U-jre_s390x_linux_hotspot_8u242b08.tar.gz'; ;; amd64|x86_64) ESUM='5edfaefdbb0469d8b24d61c8aef80c076611053b1738029c0232b9a632fe2708'; BINARY_URL='https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u242-b08/OpenJDK8U-jre_x64_linux_hotspot_8u242b08.tar.gz'; ;; *) echo "Unsupported arch: ${ARCH}"; exit 1; ;; esac; curl -LfsSo /tmp/openjdk.tar.gz ${BINARY_URL}; echo "${ESUM} */tmp/openjdk.tar.gz" | sha256sum -c -; mkdir -p /opt/java/openjdk; cd /opt/java/openjdk; tar -xf /tmp/openjdk.tar.gz --strip-components=1; rm -rf /tmp/openjdk.tar.gz;

2020-04-03 20:36:01 UTC

/bin/sh -c #(nop) ENV JAVA_HOME=/opt/java/openjdk PATH=/opt/java/openjdk/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

Danger Zone
Delete Tag

Please be careful as this will not just delete the reference but also the actual content!

For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.

Delete