Namespace
adoptopenjdk
Image / Tag
openjdk8:ppc64le-ubi-jdk8u412-b05-ea-beta-nightly-slim
Content Digest
sha256:44236c929f8663c906cba90abbe04003c02f57495269b1b0a7b5d283a334ec37
Details
Created

2024-03-17 12:30:24 -0400

Size

232 MB

Content Digest
Labels
  • architecture
    ppc64le
  • build-date
    2021-10-26T13:03:56.346851
  • com.redhat.build-host
    ppc64le-c3-vm-17.osbs.prod.psi.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
    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.4-213
  • vcs-ref
    ed5adf70c28eb951940c72f4173fa32c4bca2165
  • vcs-type
    git
  • vendor
    AdoptOpenJDK
  • version
    jdk8u412-b05-ea-beta

Environment
JAVA_HOME

/opt/java/openjdk

JAVA_VERSION

jdk8u412-b05-ea-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:ed6ee657d49e14dc574507ea575b857343d444d423231c7f827ae0d3105b7937 - 37.52% (87 MB)

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

[#002] sha256:38f5ea2c9de17be8678ea4eab1172b82dc5da6bb7a0a44a249e5760be6c55d42 - 40.27% (93.4 MB)

[#003] sha256:4c88179b82c66eea12de950961e7259943779cc625312dfa77441b3526184ee5 - 0.0% (4.98 KB)

[#004] sha256:4f3466af9ed1ae8867085ee4648c71692d7daa58522fa3af789511a82a45a316 - 22.21% (51.5 MB)


History
2021-10-26 13:04:16 UTC (Imported from -)

2021-10-26 13:04:47 UTC

2024-03-17 12:28:33 -0400 (buildkit.dockerfile.v0)

ENV LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=en_US.UTF-8

2024-03-17 12:28:33 -0400 (buildkit.dockerfile.v0)

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

2024-03-17 12:28:33 -0400 (buildkit.dockerfile.v0)

LABEL name=AdoptOpenJDK Java vendor=AdoptOpenJDK version=jdk8u412-b05-ea-beta 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

2024-03-17 12:28:33 -0400 (buildkit.dockerfile.v0)

ENV JAVA_VERSION=jdk8u412-b05-ea-beta

2024-03-17 12:28:33 -0400 (buildkit.dockerfile.v0)

COPY slim-java* /usr/local/bin/ # buildkit

2024-03-17 12:30:24 -0400 (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; ARCH="$(uname -m)"; case "${ARCH}" in aarch64|arm64) ESUM='ad1f05210468483f2ad09b0c0187e916f79a42bed009d9be2e918cda9f8afbbe'; BINARY_URL='https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u412-b05-ea-beta/OpenJDK8U-jdk_aarch64_linux_hotspot_8u412b05-ea.tar.gz'; ;; ppc64el|ppc64le) ESUM='1403c18d5765ef3d5aefd3cc795dd47ebb3558e9a2f491d11c9057f2e45a5efe'; BINARY_URL='https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u412-b05-ea-beta/OpenJDK8U-jdk_ppc64le_linux_hotspot_8u412b05-ea.tar.gz'; ;; amd64|x86_64) ESUM='31de5b306a904ba3e4b028a1a2889810b2485759db8154a6432bf641b752868b'; BINARY_URL='https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u412-b05-ea-beta/OpenJDK8U-jdk_x64_linux_hotspot_8u412b05-ea.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; # buildkit

2024-03-17 12:30:24 -0400 (buildkit.dockerfile.v0)

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