Namespace
library
Image / Tag
gradle:8.4-jdk11-alpine
Content Digest
sha256:ddd53cf9df76992d575acde1e8a3fc46abd8d3f8c9aa79e4d12d9be6e984c270
Details
Created

2023-10-31 05:21:37 UTC

Size

304 MB

Content Digest
Environment
GRADLE_HOME

/opt/gradle

GRADLE_VERSION

8.4

JAVA_HOME

/opt/java/openjdk

JAVA_VERSION

jdk-11.0.21+9

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


Layers

[#000] sha256:96526aa774ef0126ad0fe9e9a95764c5fc37f409ab9e97021e7b4775d82bf6fa - 1.07% (3.24 MB)

[#001] sha256:b02a3a37ba0a441c23edb967d901e4af5b508796b983fbb71e14ad89db9a9999 - 2.91% (8.85 MB)

[#002] sha256:a12e67e82faf020e769d46cccfc7f1620ccb86e04b4576b070512194641eb854 - 44.01% (134 MB)

[#003] sha256:43caa4ccd4f85f364bbf72014cc960dc6fb6703350eceaee77976cf6313c8a55 - 0.0% (176 Bytes)

[#004] sha256:8800858de447fac23faff681df1122b67d784efb0ee850d3d9551bcb5e9b19f8 - 0.0% (733 Bytes)

[#005] sha256:93174729fb9154c647b46c3b3a0514a6b72eaec36aac27e02010f1ef1ea0b356 - 0.0% (1.3 KB)

[#006] sha256:416e8b9ff71dca36af172e5f3dc2a72409c86e5f2473dfcb3bc86d9ac0d20fda - 10.98% (33.4 MB)

[#007] sha256:bab50708b6929724e11a7a4189a76a1ed739bfe892ff8ae0c1ad422fd80d68e0 - 41.04% (125 MB)

[#008] sha256:5eda27c372fb3a207770538554bd0064235511432bf07606750e7eef3201c6b9 - 0.0% (167 Bytes)


History
2023-09-28 21:19:27 UTC

/bin/sh -c #(nop) ADD file:756183bba9c7f4593c2b216e98e4208b9163c4c962ea0837ef88bd917609d001 in /

2023-09-28 21:19:27 UTC

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

2023-10-19 02:50:15 UTC

/bin/sh -c #(nop) ENV JAVA_HOME=/opt/java/openjdk

2023-10-19 02:50:15 UTC

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

2023-10-19 02:50:15 UTC

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

2023-10-30 23:22:37 UTC

/bin/sh -c set -eux; apk add --no-cache bash fontconfig ttf-dejavu java-cacerts libretls zlib musl-locales musl-locales-lang tzdata ; rm -rf /var/cache/apk/*

2023-10-30 23:22:38 UTC

/bin/sh -c #(nop) ENV JAVA_VERSION=jdk-11.0.21+9

2023-10-30 23:22:46 UTC

/bin/sh -c set -eux; ARCH="$(apk --print-arch)"; case "${ARCH}" in amd64|x86_64) ESUM='d5e2235d3707526f7c9ba3f0dc194e60d5dec33eceff2a2dcf9d874464cc0e9e'; BINARY_URL='https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.21%2B9/OpenJDK11U-jdk_x64_alpine-linux_hotspot_11.0.21_9.tar.gz'; ;; *) echo "Unsupported arch: ${ARCH}"; exit 1; ;; esac; wget -O /tmp/openjdk.tar.gz ${BINARY_URL}; echo "${ESUM} */tmp/openjdk.tar.gz" | sha256sum -c -; mkdir -p "$JAVA_HOME"; tar --extract --file /tmp/openjdk.tar.gz --directory "$JAVA_HOME" --strip-components 1 --no-same-owner ; rm -f /tmp/openjdk.tar.gz ${JAVA_HOME}/lib/src.zip;

2023-10-30 23:22:48 UTC

/bin/sh -c set -eux; echo "Verifying install ..."; fileEncoding="$(echo 'System.out.println(System.getProperty("file.encoding"))' | jshell -s -)"; [ "$fileEncoding" = 'UTF-8' ]; rm -rf ~/.java; echo "javac --version"; javac --version; echo "java --version"; java --version; echo "Complete."

2023-10-30 23:22:48 UTC

/bin/sh -c #(nop) COPY file:8b8864b3e02a33a579dc216fd51b28a6047bc8eeaa03045b258980fe0cf7fcb3 in /__cacert_entrypoint.sh

2023-10-30 23:22:48 UTC

/bin/sh -c #(nop) ENTRYPOINT ["/__cacert_entrypoint.sh"]

2023-10-30 23:22:49 UTC

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

2023-10-31 05:21:25 UTC

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

2023-10-31 05:21:25 UTC

/bin/sh -c #(nop) ENV GRADLE_HOME=/opt/gradle

2023-10-31 05:21:26 UTC

/bin/sh -c set -o errexit -o nounset && echo "Adding gradle user and group" && addgroup --system --gid 1000 gradle && adduser --system --ingroup gradle --uid 1000 --shell /bin/ash gradle && mkdir /home/gradle/.gradle && chown -R gradle:gradle /home/gradle && echo "Symlinking root Gradle cache to gradle Gradle cache" && ln -s /home/gradle/.gradle /root/.gradle

2023-10-31 05:21:26 UTC

/bin/sh -c #(nop) VOLUME [/home/gradle/.gradle]

2023-10-31 05:21:26 UTC

/bin/sh -c #(nop) WORKDIR /home/gradle

2023-10-31 05:21:29 UTC

/bin/sh -c set -o errexit -o nounset && echo "Installing VCSes" && apk add --no-cache git git-lfs mercurial subversion && echo "Testing VCSes" && which git && which git-lfs && which hg && which svn

2023-10-31 05:21:30 UTC

/bin/sh -c #(nop) ENV GRADLE_VERSION=8.4

2023-10-31 05:21:30 UTC

/bin/sh -c #(nop) ARG GRADLE_DOWNLOAD_SHA256=3e1af3ae886920c3ac87f7a91f816c0c7c436f276a6eefdb3da152100fef72ae

2023-10-31 05:21:35 UTC

|1 GRADLE_DOWNLOAD_SHA256=3e1af3ae886920c3ac87f7a91f816c0c7c436f276a6eefdb3da152100fef72ae /bin/sh -c set -o errexit -o nounset && echo "Downloading Gradle" && wget --no-verbose --output-document=gradle.zip "https://services.gradle.org/distributions/gradle-${GRADLE_VERSION}-bin.zip" && echo "Checking Gradle download hash" && echo "${GRADLE_DOWNLOAD_SHA256} *gradle.zip" | sha256sum -c - && echo "Installing Gradle" && unzip gradle.zip && rm gradle.zip && mv "gradle-${GRADLE_VERSION}" "${GRADLE_HOME}/" && ln -s "${GRADLE_HOME}/bin/gradle" /usr/bin/gradle

2023-10-31 05:21:35 UTC

/bin/sh -c #(nop) USER gradle

2023-10-31 05:21:37 UTC

|1 GRADLE_DOWNLOAD_SHA256=3e1af3ae886920c3ac87f7a91f816c0c7c436f276a6eefdb3da152100fef72ae /bin/sh -c set -o errexit -o nounset && echo "Testing Gradle installation" && gradle --version

2023-10-31 05:21:37 UTC

/bin/sh -c #(nop) USER root

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