Namespace
adoptopenjdk
Image / Tag
openjdk11:x86_64-ubi-jdk-11.0.17_8-slim
Content Digest
sha256:35111533444bf09e6277b357c99df7cea7a0b2b9bf2b077b07483d86e87ae54c
Details
Created

2023-01-19 19:18:00 UTC

Size

288 MB

Content Digest
Labels
  • architecture
    x86_64
  • build-date
    2021-10-26T13:03:15.222780
  • com.redhat.build-host
    cpt-1003.osbs.prod.upshift.rdu2.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
    11
  • 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.4-213
  • vcs-ref
    ed5adf70c28eb951940c72f4173fa32c4bca2165
  • vcs-type
    git
  • vendor
    AdoptOpenJDK
  • version
    jdk-11.0.17+8

Environment
JAVA_HOME

/opt/java/openjdk

JAVA_VERSION

jdk-11.0.17+8

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:eac1b95df832dc9f172fd1f07e7cb50c1929b118a4249ddd02c6318a677b506a - 27.58% (79.4 MB)

[#001] sha256:47aa3ed2034c4f27622b989b26c06087de17067268a19a1b3642a7e2686cd1a3 - 0.0% (1.75 KB)

[#002] sha256:fb8df8dc7c32b869a6e53cacf2a7bd6bfe00cb494bdc2f93568c6b15d48596b4 - 29.0% (83.5 MB)

[#003] sha256:782c9afe46fd112bf15ba6f3375bb97d81a82614a712997cc4f536e387f0fc9e - 0.0% (4.98 KB)

[#004] sha256:e9bace5556690e211976d23e23f52c66cc4df4b66e574a6b7a9a03d7ca972fc8 - 43.41% (125 MB)


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

2021-10-26 13:03:40 UTC

2023-01-19 19:17:15 UTC

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

2023-01-19 19:17:45 UTC

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

2023-01-19 19:17:46 UTC

/bin/sh -c #(nop) LABEL name=AdoptOpenJDK Java vendor=AdoptOpenJDK version=jdk-11.0.17+8 release=11 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

2023-01-19 19:17:46 UTC

/bin/sh -c #(nop) ENV JAVA_VERSION=jdk-11.0.17+8

2023-01-19 19:17:46 UTC

/bin/sh -c #(nop) COPY multi:da97b7f42d52b404e495fa140e92a22c92d31d4502eef244047de8e9f26d61c1 in /usr/local/bin/

2023-01-19 19:17:59 UTC

/bin/sh -c set -eux; ARCH="$(uname -m)"; case "${ARCH}" in aarch64|arm64) ESUM='d18b5dd73fce9edd5c58f623a1173f9ee2d45023836b8753b96beae51673a432'; BINARY_URL='https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.17%2B8/OpenJDK11U-jdk_aarch64_linux_hotspot_11.0.17_8.tar.gz'; ;; ppc64el|ppc64le) ESUM='18c636bd103e240d29cdb30d7867720ea9fb9ff7c645738bfb4d5b8027269263'; BINARY_URL='https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.17%2B8/OpenJDK11U-jdk_ppc64le_linux_hotspot_11.0.17_8.tar.gz'; ;; s390x) ESUM='eb861db1433ddc1b89f170b789fafde282f137218d6d985fb5c2003e4ff44984'; BINARY_URL='https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.17%2B8/OpenJDK11U-jdk_s390x_linux_hotspot_11.0.17_8.tar.gz'; ;; amd64|x86_64) ESUM='b8d46ed08ef4859476fe6421a7690d899ed83dce63f13fd894f994043177ef3c'; BINARY_URL='https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.17%2B8/OpenJDK11U-jdk_x64_linux_hotspot_11.0.17_8.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; export PATH="/opt/java/openjdk/bin:$PATH"; dnf install -y binutils; /usr/local/bin/slim-java.sh /opt/java/openjdk; dnf remove -y binutils; dnf clean all; rm -rf /tmp/openjdk.tar.gz;

2023-01-19 19:18:00 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

2023-01-19 19:18:00 UTC

/bin/sh -c #(nop) CMD ["jshell"]

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