Namespace
library
Image / Tag
gradle:4.5.1-jdk7
Content Digest
sha256:175b7f6badd340aeab6f46507d678c8456111c26ce0a431608f6f5d500941341
Details
Created

2018-02-17 15:22:43 UTC

Size

303 MB

Content Digest
Environment
GRADLE_HOME

/opt/gradle

GRADLE_VERSION

4.5.1

JAVA_DEBIAN_VERSION

7u151-2.6.11-2~deb8u1

JAVA_HOME

/docker-java-home

JAVA_VERSION

7u151

LANG

C.UTF-8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin


Layers

[#000] sha256:4176fe04cefee66d80f83003fd4166373f83cb552d1d01bb3b29a0ac45a48c50 - 16.58% (50.2 MB)

[#001] sha256:851356ecf618f41550b3b8696fb9aad7925f72929c8345453107cce510437608 - 6.07% (18.4 MB)

[#002] sha256:6115379c7b49daf7b059dd310633130d93a983b52ee50146295b3963a6c30f11 - 13.63% (41.3 MB)

[#003] sha256:cc4d404166f39accce9e01cab8fc1eb56d0f87a9bbe5deb3ee582b78ce5d7732 - 0.26% (809 KB)

[#004] sha256:5ee10cdd42228ef042e3be4186c0bdadebd0c017258225e9860517158b0c54f6 - 0.0% (247 Bytes)

[#005] sha256:9e7e225da24dc85953790b471ef015273297425f739e442258551eb706b472a5 - 0.0% (129 Bytes)

[#006] sha256:b5586cd89459ff5119ddf9501ba23eaceeb80a2f21236933dc776d3974bbc05c - 40.63% (123 MB)

[#007] sha256:147744f3fd6cdf2c1bd9eb7e2f8b2c303f3d753c9b44c4f21729fb8413d05bbb - 22.82% (69.1 MB)

[#008] sha256:3e477eb59704ccc852d3bc18a9f2f7439e1047ba5893513ad10e909abef151de - 0.0% (139 Bytes)


History
2018-02-15 01:42:14 UTC

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

2018-02-15 01:42:14 UTC

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

2018-02-17 07:01:41 UTC

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

2018-02-17 07:01:43 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

2018-02-17 07:02:38 UTC

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

2018-02-17 09:22:18 UTC

/bin/sh -c apt-get update && apt-get install -y --no-install-recommends bzip2 unzip xz-utils && rm -rf /var/lib/apt/lists/*

2018-02-17 09:22:18 UTC

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

2018-02-17 09:22:19 UTC

/bin/sh -c { echo '#!/bin/sh'; echo 'set -e'; echo; echo 'dirname "$(dirname "$(readlink -f "$(which javac || which java)")")"'; } > /usr/local/bin/docker-java-home && chmod +x /usr/local/bin/docker-java-home

2018-02-17 09:22:20 UTC

/bin/sh -c ln -svT "/usr/lib/jvm/java-7-openjdk-$(dpkg --print-architecture)" /docker-java-home

2018-02-17 09:22:20 UTC

/bin/sh -c #(nop) ENV JAVA_HOME=/docker-java-home

2018-02-17 09:22:20 UTC

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

2018-02-17 09:22:21 UTC

/bin/sh -c #(nop) ENV JAVA_DEBIAN_VERSION=7u151-2.6.11-2~deb8u1

2018-02-17 09:23:21 UTC

/bin/sh -c set -ex; if [ ! -d /usr/share/man/man1 ]; then mkdir -p /usr/share/man/man1; fi; apt-get update; apt-get install -y openjdk-7-jdk="$JAVA_DEBIAN_VERSION" ; rm -rf /var/lib/apt/lists/*; [ "$(readlink -f "$JAVA_HOME")" = "$(docker-java-home)" ]; update-alternatives --get-selections | awk -v home="$(readlink -f "$JAVA_HOME")" 'index($3, home) == 1 { $2 = "manual"; print | "update-alternatives --set-selections" }'; update-alternatives --query java | grep -q 'Status: manual'

2018-02-17 15:22:32 UTC

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

2018-02-17 15:22:32 UTC

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

2018-02-17 15:22:32 UTC

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

2018-02-17 15:22:33 UTC

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

2018-02-17 15:22:37 UTC

|1 GRADLE_DOWNLOAD_SHA256=3e2ea0d8b96605b7c528768f646e0975bd9822f06df1f04a64fd279b1a17805e /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 download hash" && echo "${GRADLE_DOWNLOAD_SHA256} *gradle.zip" | sha256sum --check - && echo "Installing Gradle" && unzip gradle.zip && rm gradle.zip && mv "gradle-${GRADLE_VERSION}" "${GRADLE_HOME}/" && ln --symbolic "${GRADLE_HOME}/bin/gradle" /usr/bin/gradle && echo "Adding gradle user and group" && groupadd --system --gid 1000 gradle && useradd --system --gid gradle --uid 1000 --shell /bin/bash --create-home gradle && mkdir /home/gradle/.gradle && chown --recursive gradle:gradle /home/gradle && echo "Symlinking root Gradle cache to gradle Gradle cache" && ln -s /home/gradle/.gradle /root/.gradle

2018-02-17 15:22:38 UTC

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

2018-02-17 15:22:38 UTC

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

2018-02-17 15:22:38 UTC

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

2018-02-17 15:22:43 UTC

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

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