Namespace
adoptopenjdk
Image / Tag
openjdk8:aarch64-ubi-minimal-jre8u-2022-01-13-06-14-beta-nightly
Content Digest
sha256:64d37d68ccb426629698a491b34213769b9338427d9e52b45995902604c68644
Details
Created

2022-01-13 18:25:15 UTC

Size

144 MB

Content Digest
Labels
  • architecture
    arm64
  • build-date
    2021-10-26T13:03:10.720540
  • com.redhat.build-host
    arm-002.osbs.prod.upshift.rdu2.redhat.com
  • com.redhat.component
    ubi8-minimal-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 Minimal is a stripped down image that uses microdnf as a package manager. 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 Minimal
  • io.openshift.expose-services
  • io.openshift.tags
    minimal 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-minimal
  • url
    https://access.redhat.com/containers/#/registry.access.redhat.com/ubi8-minimal/images/8.4-212
  • vcs-ref
    7256039d3c371a38cf13906dcf5688c19700c73b
  • vcs-type
    git
  • vendor
    AdoptOpenJDK
  • version
    jdk8u-2022-01-13-06-14-beta

Environment
JAVA_HOME

/opt/java/openjdk

JAVA_VERSION

jdk8u-2022-01-13-06-14-beta

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:512021b65c98a53509b3abf56789416910ea2b1f353e85c802be3052ca664644 - 25.75% (37.1 MB)

[#001] sha256:e10313206c5674058e1133ca193376d74c8974dd9861f78e8eb78fb79dd62fce - 0.0% (1.7 KB)

[#002] sha256:74a0284d103f9dc28ea362ef2872b81c8517e2e5c5363a2c8bfd1ca2d8de63e8 - 47.25% (68 MB)

[#003] sha256:cf79756090ceccdf0dd39f8ccbd5f883814b434ee5f53de8259f3480f3294584 - 27.0% (38.9 MB)


History
2021-10-26 13:03:21 UTC (Imported from -)

2021-10-26 13:04:07 UTC

2022-01-13 18:24:16 UTC

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

2022-01-13 18:25:06 UTC

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

2022-01-13 18:25:08 UTC

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

2022-01-13 18:25:08 UTC

/bin/sh -c #(nop) ENV JAVA_VERSION=jdk8u-2022-01-13-06-14-beta

2022-01-13 18:25:14 UTC

/bin/sh -c set -eux; ARCH="$(uname -m)"; case "${ARCH}" in aarch64|arm64) ESUM='745b580c1fa831389c481bebc9801063592166a6d90b73e5dd1e8a63d484343d'; BINARY_URL='https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u-2022-01-13-06-14-beta/OpenJDK8U-jre_aarch64_linux_hotspot_2022-01-13-06-14.tar.gz'; ;; ppc64el|ppc64le) ESUM='97599eb4454438bdc87d72f0913177d41902a6e36a971a0de67d743ff7bf95d5'; BINARY_URL='https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u-2022-01-13-06-14-beta/OpenJDK8U-jre_ppc64le_linux_hotspot_2022-01-13-06-14.tar.gz'; ;; s390x) ESUM='b9cb3d1701df599e1e22ccd46a4d92bfe0545cb0e32012cdaeb5ad0ca03ab374'; BINARY_URL='https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u-2022-01-13-06-14-beta/OpenJDK8U-jre_s390x_linux_hotspot_2022-01-13-06-14.tar.gz'; ;; amd64|x86_64) ESUM='9fb4cf395a31c1b7e05c38618d8721803414c6f8d7f901123a709c3ef1108bcd'; BINARY_URL='https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u-2022-01-13-06-14-beta/OpenJDK8U-jre_x64_linux_hotspot_2022-01-13-06-14.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;

2022-01-13 18:25:15 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