Namespace
library
Image / Tag
openjdk:14-buster
Content Digest
sha256:af408c9e64ff6a24dcd47b653fdf00d3f8436de9698f7e7fd8ad4b91eb3135bb
Details
Created

2020-10-13 09:01:41 UTC

Size

318 MB

Content Digest
Environment
JAVA_HOME

/usr/local/openjdk-14

JAVA_VERSION

14.0.2

LANG

C.UTF-8

PATH

/usr/local/openjdk-14/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin


Layers

[#000] sha256:e4c3d3e4f7b024979a1c12daa4073f6353b2ba92d96418bc90451994927c9bff - 15.13% (48.1 MB)

[#001] sha256:101c41d0463bc77661fb3343235b16d536a92d2efb687046164d413e51bd4fc4 - 2.34% (7.45 MB)

[#002] sha256:8275efcd805f9905d7def23603618236284b0be6b9e47455c638fbfb03fa9208 - 3.0% (9.53 MB)

[#003] sha256:751620502a7a2905067c2f32d4982fb9b310b9808670ce82c0e2b40f5307a3ee - 15.56% (49.4 MB)

[#004] sha256:e6f28f646e98144707f2cc19e3ad498b86228306ce9f907e555f8f055d690dd1 - 4.18% (13.3 MB)

[#005] sha256:0257810e779cd1c96ba0cf03090822921fab5fe27f953f582ba318a648b417e2 - 0.0% (211 Bytes)

[#006] sha256:f3b70a40dcef5dc5b602ecbe1e66cbba32baa0504dc9ffc40d9391baf92495c2 - 59.79% (190 MB)


History
2020-10-13 01:38:30 UTC

/bin/sh -c #(nop) ADD file:6627ad39ea0cb9fcb212342326d14efaff51aece1fd0dc16d5bbcaa25d858622 in /

2020-10-13 01:38:30 UTC

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

2020-10-13 02:14:45 UTC

/bin/sh -c apt-get update && apt-get install -y --no-install-recommends ca-certificates curl netbase wget && rm -rf /var/lib/apt/lists/*

2020-10-13 02:14:57 UTC

/bin/sh -c set -ex; if ! command -v gpg > /dev/null; then apt-get update; apt-get install -y --no-install-recommends gnupg dirmngr ; rm -rf /var/lib/apt/lists/*; fi

2020-10-13 02:15:20 UTC

/bin/sh -c apt-get update && apt-get install -y --no-install-recommends git mercurial openssh-client subversion procps && rm -rf /var/lib/apt/lists/*

2020-10-13 08:57:37 UTC

/bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends bzip2 unzip xz-utils ca-certificates p11-kit binutils fontconfig libfreetype6 ; rm -rf /var/lib/apt/lists/*

2020-10-13 08:57:38 UTC

/bin/sh -c #(nop) ENV LANG=C.UTF-8

2020-10-13 09:01:04 UTC

/bin/sh -c #(nop) ENV JAVA_HOME=/usr/local/openjdk-14

2020-10-13 09:01:04 UTC

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

2020-10-13 09:01:05 UTC

/bin/sh -c { echo '#/bin/sh'; echo 'echo "$JAVA_HOME"'; } > /usr/local/bin/docker-java-home && chmod +x /usr/local/bin/docker-java-home && [ "$JAVA_HOME" = "$(docker-java-home)" ]

2020-10-13 09:01:05 UTC

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

2020-10-13 09:01:41 UTC

/bin/sh -c set -eux; arch="$(dpkg --print-architecture)"; case "$arch" in amd64 | i386:x86-64) downloadUrl=https://download.java.net/java/GA/jdk14.0.2/205943a0976c4ed48cb16f1043c5c647/12/GPL/openjdk-14.0.2_linux-x64_bin.tar.gz; downloadSha256=91310200f072045dc6cef2c8c23e7e6387b37c46e9de49623ce0fa461a24623d; ;; *) echo >&2 "error: unsupported architecture: '$arch'"; exit 1 ;; esac; wget -O openjdk.tgz "$downloadUrl" --progress=dot:giga; echo "$downloadSha256 *openjdk.tgz" | sha256sum --strict --check -; mkdir -p "$JAVA_HOME"; tar --extract --file openjdk.tgz --directory "$JAVA_HOME" --strip-components 1 --no-same-owner ; rm openjdk.tgz; { echo '#!/usr/bin/env bash'; echo 'set -Eeuo pipefail'; echo 'if ! [ -d "$JAVA_HOME" ]; then echo >&2 "error: missing JAVA_HOME environment variable"; exit 1; fi'; echo 'cacertsFile=; for f in "$JAVA_HOME/lib/security/cacerts" "$JAVA_HOME/jre/lib/security/cacerts"; do if [ -e "$f" ]; then cacertsFile="$f"; break; fi; done'; echo 'if [ -z "$cacertsFile" ] || ! [ -f "$cacertsFile" ]; then echo >&2 "error: failed to find cacerts file in $JAVA_HOME"; exit 1; fi'; echo 'trust extract --overwrite --format=java-cacerts --filter=ca-anchors --purpose=server-auth "$cacertsFile"'; } > /etc/ca-certificates/update.d/docker-openjdk; chmod +x /etc/ca-certificates/update.d/docker-openjdk; /etc/ca-certificates/update.d/docker-openjdk; find "$JAVA_HOME/lib" -name '*.so' -exec dirname '{}' ';' | sort -u > /etc/ld.so.conf.d/docker-openjdk.conf; ldconfig; java -Xshare:dump; fileEncoding="$(echo 'System.out.println(System.getProperty("file.encoding"))' | jshell -s -)"; [ "$fileEncoding" = 'UTF-8' ]; rm -rf ~/.java; javac --version; java --version

2020-10-13 09:01:41 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