Namespace
library
Image / Tag
gradle:4.10.3-jre11
Content Digest
sha256:e4cd37c808bc190cb0c380313a80ae9ee40a0a6335b803ab0d97017e67790243
Details
Created

2018-12-18 12:05:43 UTC

Size

313 MB

Content Digest
Environment
GRADLE_HOME

/opt/gradle

GRADLE_VERSION

4.10.3

JAVA_DEBIAN_VERSION

11.0.1+13-3

JAVA_HOME

/docker-java-home

JAVA_VERSION

11.0.1

LANG

C.UTF-8

PATH

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


Layers

[#000] sha256:aa30602b1807a2d186d63c50f118d4f15cb29b1b571140414c0bfc373476f654 - 15.24% (47.6 MB)

[#001] sha256:d8ad8c93fe5a088ae5005cfe50a1ef475d4f0e1a97371d56db68fc08705a03df - 2.3% (7.18 MB)

[#002] sha256:3ece88fa739651725b15edad9d926c3b46176bc8e5ea97bfbb390ed5a132223d - 3.08% (9.64 MB)

[#003] sha256:ce8d14f72dc65059946af02e1e308916328cc956284f5efbd8c5712b419f72b2 - 0.26% (836 KB)

[#004] sha256:837384af7e6fccd5709bce8c7cc1aca3b2b7170f30355f03ab060674d6144ad8 - 0.0% (237 Bytes)

[#005] sha256:0f7b0ea6ffae0d39e641eb62be113f1b1a5da49959702dced35239578c49de39 - 0.0% (131 Bytes)

[#006] sha256:766592456e21f2c9b9a8bd3f8c0e4aa9e9c0d60afc8e3e288cf302db4bc69b9c - 55.2% (173 MB)

[#007] sha256:4507bc56fad8adf5ba305436000b1f734f5ea94c0f2c1eacad0d5f0f2f330af0 - 23.92% (74.8 MB)

[#008] sha256:719055397c4c7a9f1f7be736e5b555aa77454ac5086c0e4c93da2e4f1eee02ff - 0.0% (139 Bytes)


History
2018-11-16 12:32:10 UTC

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

2018-11-16 12:32:10 UTC

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

2018-11-17 11:20:19 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/*

2018-11-17 11:20:32 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-11-17 13:49:53 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-11-17 13:49:53 UTC

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

2018-11-17 13:49:55 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-11-17 13:49:56 UTC

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

2018-11-17 13:49:56 UTC

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

2018-11-17 13:49:57 UTC

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

2018-12-05 11:50:44 UTC

/bin/sh -c #(nop) ENV JAVA_DEBIAN_VERSION=11.0.1+13-3

2018-12-05 11:51:35 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 --no-install-recommends openjdk-11-jre="$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-12-05 12:33:06 UTC

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

2018-12-05 12:33:06 UTC

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

2018-12-18 12:05:35 UTC

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

2018-12-18 12:05:36 UTC

/bin/sh -c #(nop) ARG GRADLE_DOWNLOAD_SHA256=8626cbf206b4e201ade7b87779090690447054bc93f052954c78480fa6ed186e

2018-12-18 12:05:40 UTC

|1 GRADLE_DOWNLOAD_SHA256=8626cbf206b4e201ade7b87779090690447054bc93f052954c78480fa6ed186e /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-12-18 12:05:40 UTC

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

2018-12-18 12:05:40 UTC

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

2018-12-18 12:05:41 UTC

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

2018-12-18 12:05:43 UTC

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

Details
Created

2018-12-18 00:26:41 UTC

Size

307 MB

Content Digest
Environment
GRADLE_HOME

/opt/gradle

GRADLE_VERSION

4.10.3

JAVA_DEBIAN_VERSION

11.0.1+13-3

JAVA_HOME

/docker-java-home

JAVA_VERSION

11.0.1

LANG

C.UTF-8

PATH

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


Layers

[#000] sha256:16e82e17faef9e90ceefcd8175e9899edce768aa6008cc16dd1e3fe7d3b88bb8 - 15.33% (47 MB)

[#001] sha256:117dc02416a34c62e28a030f27828f2f31af6b8b1f02c85b009a1ffb390d01dc - 2.29% (7.03 MB)

[#002] sha256:7e4c717259ac9c550efbbf41c6fe0dc9598046f4bfd4b398deb63f7a0c19cb3f - 3.04% (9.33 MB)

[#003] sha256:ff78688707a851f0821b98d726bd73c923f82850c650aa07bb2b079c9239443f - 0.26% (828 KB)

[#004] sha256:836f4a8d99d340e17ffa455950c9b8b92303a875c4d20e0794156bbd463a4520 - 0.0% (237 Bytes)

[#005] sha256:bebeef34911947e582305caa31fb4742319808febaf576d9b866be8b31b629e6 - 0.0% (131 Bytes)

[#006] sha256:1abb0b61efceea81f933e16f572a04f717d98120cd1d334ab8e51e1149a87046 - 54.68% (168 MB)

[#007] sha256:c2da211e9accb02cb8bae21c959ce954da3d9f0214b2472b51167c681ce8a6c9 - 24.4% (74.8 MB)

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


History
2018-11-15 22:39:40 UTC

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

2018-11-15 22:39:48 UTC

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

2018-11-16 11:12:05 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/*

2018-11-16 11:12:11 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-11-16 14:47:35 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-11-16 14:47:35 UTC

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

2018-11-16 14:47:36 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-11-16 14:47:38 UTC

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

2018-11-16 14:47:38 UTC

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

2018-11-16 14:47:38 UTC

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

2018-12-04 23:25:54 UTC

/bin/sh -c #(nop) ENV JAVA_DEBIAN_VERSION=11.0.1+13-3

2018-12-04 23:26:40 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 --no-install-recommends openjdk-11-jre="$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-12-05 00:10:46 UTC

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

2018-12-05 00:10:46 UTC

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

2018-12-18 00:26:34 UTC

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

2018-12-18 00:26:34 UTC

/bin/sh -c #(nop) ARG GRADLE_DOWNLOAD_SHA256=8626cbf206b4e201ade7b87779090690447054bc93f052954c78480fa6ed186e

2018-12-18 00:26:38 UTC

|1 GRADLE_DOWNLOAD_SHA256=8626cbf206b4e201ade7b87779090690447054bc93f052954c78480fa6ed186e /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-12-18 00:26:38 UTC

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

2018-12-18 00:26:39 UTC

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

2018-12-18 00:26:39 UTC

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

2018-12-18 00:26:41 UTC

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

Details
Created

2018-12-18 09:52:13 UTC

Size

283 MB

Content Digest
Environment
GRADLE_HOME

/opt/gradle

GRADLE_VERSION

4.10.3

JAVA_DEBIAN_VERSION

11.0.1+13-3

JAVA_HOME

/docker-java-home

JAVA_VERSION

11.0.1

LANG

C.UTF-8

PATH

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


Layers

[#000] sha256:47c89bded53655a08a5ade4bcec2735b8f5ed461132add6b56c91d99d2d43e82 - 15.82% (44.8 MB)

[#001] sha256:6c40e735ea786d7012557eb1a19713d212a9eb65c662a0e17496c671826df7e8 - 2.34% (6.62 MB)

[#002] sha256:51e84d4e46d444d64c8c7b8bc36fc4bba762c6ab773eb80c2e8a53fea1ef65f0 - 3.2% (9.04 MB)

[#003] sha256:00696f492bae7cd462a7aef447e4bf98bb2d22d55b60047bec1b8d00beff8140 - 0.28% (820 KB)

[#004] sha256:9d352258e3b076741401225c2a341c6c58c02659328cf934d45bdca5a91e6ab5 - 0.0% (239 Bytes)

[#005] sha256:eda147f20d77e1f0879cf9d71594dad8ddea6455670b1f96937f12c49ad46383 - 0.0% (130 Bytes)

[#006] sha256:53e3619b29051954f56446f7677f012241216424c8b4a2563eaf8d5a2a4dc63e - 51.94% (147 MB)

[#007] sha256:4d80c1a28470e25fd09c7f372d12ba49bf23dcb7e086b4032db2d6cba3798265 - 26.42% (74.8 MB)

[#008] sha256:518d68a5c2f0d9e73a24b25a0bea769093dba673d4d4bc02f0251abc379747d6 - 0.0% (236 Bytes)


History
2018-11-16 09:55:05 UTC

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

2018-11-16 09:55:07 UTC

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

2018-11-16 18:33:13 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/*

2018-11-16 18:33:27 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-11-16 18:34: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-11-16 18:34:28 UTC

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

2018-11-16 18:34:29 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-11-17 01:44:49 UTC

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

2018-11-17 01:44:49 UTC

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

2018-11-17 01:44:49 UTC

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

2018-12-05 09:52:20 UTC

/bin/sh -c #(nop) ENV JAVA_DEBIAN_VERSION=11.0.1+13-3

2018-12-05 09:53:40 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 --no-install-recommends openjdk-11-jre="$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-12-05 10:34:17 UTC

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

2018-12-05 10:34:18 UTC

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

2018-12-18 09:51:56 UTC

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

2018-12-18 09:51:56 UTC

/bin/sh -c #(nop) ARG GRADLE_DOWNLOAD_SHA256=8626cbf206b4e201ade7b87779090690447054bc93f052954c78480fa6ed186e

2018-12-18 09:52:05 UTC

|1 GRADLE_DOWNLOAD_SHA256=8626cbf206b4e201ade7b87779090690447054bc93f052954c78480fa6ed186e /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-12-18 09:52:05 UTC

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

2018-12-18 09:52:05 UTC

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

2018-12-18 09:52:06 UTC

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

2018-12-18 09:52:13 UTC

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

Details
Created

2018-12-18 13:02:56 UTC

Size

280 MB

Content Digest
Environment
GRADLE_HOME

/opt/gradle

GRADLE_VERSION

4.10.3

JAVA_DEBIAN_VERSION

11.0.1+13-3

JAVA_HOME

/docker-java-home

JAVA_VERSION

11.0.1

LANG

C.UTF-8

PATH

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


Layers

[#000] sha256:fdd94773a9e48362892e21476e28eead609d35afebea9220515e313cc45e9b67 - 15.27% (42.7 MB)

[#001] sha256:170ebfdb451da69aec8b40173375cf38f87f1e39085d2072e246796c09c6738c - 2.29% (6.39 MB)

[#002] sha256:29e9929c695e5dc9cd495d9b50731f7cabfba0a93fbe0c8c039f86c25531c0dd - 3.12% (8.72 MB)

[#003] sha256:84c17fa2c312aed7c602f3fbed7e6305980113bf282c2498cff56339ced25f65 - 0.28% (803 KB)

[#004] sha256:8ce3e103655f07bd3ab48204c7d2fd9af93713db7d41de74f6465a873193a545 - 0.0% (239 Bytes)

[#005] sha256:57c6a66edb1cb1c13a7d122d73677f970281eaa9fab17d76610f05b9a55ce667 - 0.0% (131 Bytes)

[#006] sha256:ad4366201d360e4cfcfc2ef0f94bc1de77d2dd3ce37aa7ebc2b8758c206adec8 - 52.32% (146 MB)

[#007] sha256:745e8808fa3b659f30f2352056b12965c11043462b2457a714e2f6b8331ebd0f - 26.73% (74.8 MB)

[#008] sha256:2c41bb9fef0345195705010e6ab4715762947316be7ae8b38910c2b96e70697e - 0.0% (239 Bytes)


History
2018-11-16 13:06:12 UTC

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

2018-11-16 13:06:14 UTC

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

2018-11-16 18:14:15 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/*

2018-11-16 18:14:26 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-11-16 19:15:00 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-11-16 19:15:00 UTC

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

2018-11-16 19:15:01 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-11-16 19:15:02 UTC

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

2018-11-16 19:15:03 UTC

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

2018-11-16 19:15:03 UTC

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

2018-12-05 13:02:04 UTC

/bin/sh -c #(nop) ENV JAVA_DEBIAN_VERSION=11.0.1+13-3

2018-12-05 13:03:23 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 --no-install-recommends openjdk-11-jre="$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-12-05 13:39:57 UTC

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

2018-12-05 13:39:58 UTC

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

2018-12-18 13:02:44 UTC

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

2018-12-18 13:02:45 UTC

/bin/sh -c #(nop) ARG GRADLE_DOWNLOAD_SHA256=8626cbf206b4e201ade7b87779090690447054bc93f052954c78480fa6ed186e

2018-12-18 13:02:52 UTC

|1 GRADLE_DOWNLOAD_SHA256=8626cbf206b4e201ade7b87779090690447054bc93f052954c78480fa6ed186e /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-12-18 13:02:53 UTC

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

2018-12-18 13:02:53 UTC

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

2018-12-18 13:02:53 UTC

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

2018-12-18 13:02:56 UTC

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

Details
Created

2018-12-18 10:06:07 UTC

Size

293 MB

Content Digest
Environment
GRADLE_HOME

/opt/gradle

GRADLE_VERSION

4.10.3

JAVA_DEBIAN_VERSION

11.0.1+13-3

JAVA_HOME

/docker-java-home

JAVA_VERSION

11.0.1

LANG

C.UTF-8

PATH

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


Layers

[#000] sha256:3da09231e583a9a3b7103f6be2d0679bc461005f2d2ff624366b0eb98f3dbfd5 - 15.49% (45.4 MB)

[#001] sha256:9075e353d5a562472189e3052838c7ae3ae6d1010aaaa24fdee045e71c553ecb - 2.36% (6.92 MB)

[#002] sha256:645fc9dd9541251810eb8e2a2465a257a66a4c0e930c37f2b9233063083fffdf - 3.17% (9.31 MB)

[#003] sha256:879c479169f4e3cf871cb7473458a1c638712121d2b914ffeaf1d7ed9dc70b52 - 0.27% (815 KB)

[#004] sha256:27a2c82579098ae8c4a99671559e893d0eb98d41fc2fb948c1455cf7a31394ab - 0.0% (238 Bytes)

[#005] sha256:2e40cd1fba289216546fab6aced2c405bc1762bbab01ce8f92506e4f3d079eb5 - 0.0% (131 Bytes)

[#006] sha256:70e6e377c33a99edd4a108ae456e389dabb154873e7ad5f55e2d54e320403dcf - 53.2% (156 MB)

[#007] sha256:28b695c6d78b49287590e542ea63d0e5a4540a28fb1942f3b259f7eddc7e98cd - 25.5% (74.8 MB)

[#008] sha256:62c77d735459d780b4f0678ea94a3c119ef6e1124eefa01416c7e562d1fd2a08 - 0.0% (206 Bytes)


History
2018-11-16 10:10:09 UTC

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

2018-11-16 10:10:17 UTC

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

2018-11-17 02:17:22 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/*

2018-11-17 02:17:47 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-11-17 04:27:50 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-11-17 04:27:51 UTC

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

2018-11-17 04:27:54 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-11-17 04:27:57 UTC

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

2018-11-17 04:27:58 UTC

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

2018-11-17 04:28:00 UTC

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

2018-12-05 10:15:30 UTC

/bin/sh -c #(nop) ENV JAVA_DEBIAN_VERSION=11.0.1+13-3

2018-12-05 10:22:15 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 --no-install-recommends openjdk-11-jre="$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-12-05 11:02:00 UTC

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

2018-12-05 11:02:02 UTC

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

2018-12-18 10:05:29 UTC

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

2018-12-18 10:05:30 UTC

/bin/sh -c #(nop) ARG GRADLE_DOWNLOAD_SHA256=8626cbf206b4e201ade7b87779090690447054bc93f052954c78480fa6ed186e

2018-12-18 10:05:46 UTC

|1 GRADLE_DOWNLOAD_SHA256=8626cbf206b4e201ade7b87779090690447054bc93f052954c78480fa6ed186e /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-12-18 10:05:47 UTC

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

2018-12-18 10:05:47 UTC

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

2018-12-18 10:05:49 UTC

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

2018-12-18 10:06:07 UTC

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

Details
Created

2018-12-18 09:31:44 UTC

Size

304 MB

Content Digest
Environment
GRADLE_HOME

/opt/gradle

GRADLE_VERSION

4.10.3

JAVA_DEBIAN_VERSION

11.0.1+13-3

JAVA_HOME

/docker-java-home

JAVA_VERSION

11.0.1

LANG

C.UTF-8

PATH

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


Layers

[#000] sha256:e57b32151bc02904963bd565e696f960ec0fcf7e61de7736cf428f181f77a638 - 16.42% (50 MB)

[#001] sha256:7ab0f66852fcb84f2cd9e128298c12a55a73df334109fd2d39ccada2d5813aa5 - 2.45% (7.44 MB)

[#002] sha256:28eae639cdf9e8ca8ce95408b8ae6bbcbde8367a9ad6d7c204571ff3c434eb01 - 3.3% (10 MB)

[#003] sha256:169f3a6b7e77018135d5e7d2a160a8478b5b20742b2891c83585fae469bd1829 - 0.27% (826 KB)

[#004] sha256:294f380f205e99a54e59266e42e6dd728372af5f787647ae2eba822b14f40f70 - 0.0% (237 Bytes)

[#005] sha256:43120f44468ec2f697d0e1fbc7c3e2e446f4c61cc3a7fef4fae21592046cb9a5 - 0.0% (133 Bytes)

[#006] sha256:c692507f42cbfc45c7aec487cc8d692ca6f041a9f51767313578c5dbde687bd1 - 52.99% (161 MB)

[#007] sha256:e2b45c756032e7937e27b546ecfe5b297cbe7bde7a27ce2b23549644bda2d15f - 24.58% (74.8 MB)

[#008] sha256:df5da15ac1d970e134b66569fcc1e0ad552e4f479953131add51dddcc54b0982 - 0.0% (237 Bytes)


History
2018-11-16 09:29:11 UTC

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

2018-11-16 09:29:13 UTC

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

2018-11-16 19:15:44 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/*

2018-11-16 19:16:17 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-11-16 21:48:46 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-11-16 21:48:47 UTC

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

2018-11-16 21:48:48 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-11-16 21:48:50 UTC

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

2018-11-16 21:48:51 UTC

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

2018-11-16 21:48:51 UTC

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

2018-12-05 09:38:38 UTC

/bin/sh -c #(nop) ENV JAVA_DEBIAN_VERSION=11.0.1+13-3

2018-12-05 09:45:29 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 --no-install-recommends openjdk-11-jre="$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-12-05 10:49:55 UTC

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

2018-12-05 10:49:57 UTC

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

2018-12-18 09:31:07 UTC

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

2018-12-18 09:31:10 UTC

/bin/sh -c #(nop) ARG GRADLE_DOWNLOAD_SHA256=8626cbf206b4e201ade7b87779090690447054bc93f052954c78480fa6ed186e

2018-12-18 09:31:23 UTC

|1 GRADLE_DOWNLOAD_SHA256=8626cbf206b4e201ade7b87779090690447054bc93f052954c78480fa6ed186e /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-12-18 09:31:27 UTC

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

2018-12-18 09:31:31 UTC

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

2018-12-18 09:31:34 UTC

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

2018-12-18 09:31:44 UTC

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

Details
Created

2018-12-18 12:45:15 UTC

Size

263 MB

Content Digest
Environment
GRADLE_HOME

/opt/gradle

GRADLE_VERSION

4.10.3

JAVA_DEBIAN_VERSION

11.0.1+13-3

JAVA_HOME

/docker-java-home

JAVA_VERSION

11.0.1

LANG

C.UTF-8

PATH

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


Layers

[#000] sha256:b5f718c394fe29f847c837a4abaeea5358350a23da072857d9a17d7b3f835ba6 - 17.36% (45.7 MB)

[#001] sha256:41806c8eb45b71025055bb1e6fd1976203b50f81a43cd4d17ecd2e08bf1ca416 - 2.55% (6.72 MB)

[#002] sha256:311646161ff8988e1dbd14a16907d30a4e22f1b324c178e21580877b40c200d0 - 3.51% (9.22 MB)

[#003] sha256:d3daa5e6ccb5d5a10075a97563ac4cb3bc6bfb05665231d741f838f2c4695418 - 0.31% (837 KB)

[#004] sha256:a08bf9b3fa4478baac5ba087a103482d1bdc6d787761586c7927c6d291478ac4 - 0.0% (237 Bytes)

[#005] sha256:008dde56645221b49e6dd4468e789c72f166aa3b1039849f4a0a2e66f4fc2ae3 - 0.0% (133 Bytes)

[#006] sha256:ff9b09075b7cdbda59a3604ec310d6ba556d3c960618af32dbe4c8aaf1f50d1c - 47.84% (126 MB)

[#007] sha256:b51c018d6f0c6f8db6ff9d571c6f5247d061c2e58c098ad5d701ba8c5935c95f - 28.43% (74.8 MB)

[#008] sha256:9dd5e1f3824c3d377e87c3f25220df6e0254012452d1bd3c29305627e89362c0 - 0.0% (209 Bytes)


History
2018-11-16 12:42:33 UTC

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

2018-11-16 12:42:34 UTC

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

2018-11-16 20:14:46 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/*

2018-11-16 20:14:53 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-11-16 20:46:26 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-11-16 20:46:27 UTC

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

2018-11-16 20:46:27 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-11-16 20:46:28 UTC

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

2018-11-16 20:46:28 UTC

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

2018-11-16 20:46:28 UTC

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

2018-12-05 13:10:55 UTC

/bin/sh -c #(nop) ENV JAVA_DEBIAN_VERSION=11.0.1+13-3

2018-12-05 13:11:42 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 --no-install-recommends openjdk-11-jre="$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-12-05 13:46:56 UTC

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

2018-12-05 13:46:56 UTC

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

2018-12-18 12:45:06 UTC

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

2018-12-18 12:45:07 UTC

/bin/sh -c #(nop) ARG GRADLE_DOWNLOAD_SHA256=8626cbf206b4e201ade7b87779090690447054bc93f052954c78480fa6ed186e

2018-12-18 12:45:11 UTC

|1 GRADLE_DOWNLOAD_SHA256=8626cbf206b4e201ade7b87779090690447054bc93f052954c78480fa6ed186e /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-12-18 12:45:12 UTC

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

2018-12-18 12:45:12 UTC

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

2018-12-18 12:45:12 UTC

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

2018-12-18 12:45:15 UTC

|1 GRADLE_DOWNLOAD_SHA256=8626cbf206b4e201ade7b87779090690447054bc93f052954c78480fa6ed186e /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