Namespace
airbyte
Image / Tag
container-orchestrator:dev-b15dc15
Content Digest
sha256:e7df230a676c617a6b8f4658f0915519051366e08b0c4ea795e0429cc1442af4
Details
Created

2022-09-07 18:18:28 UTC

Size

491 MB

Content Digest
Environment
AIRBYTE_ENTRYPOINT

/app/airbyte-container-orchestrator-dev-b15dc15/bin/airbyte-container-orchestrator

APPLICATION

airbyte-container-orchestrator

JAVA_HOME

/usr/local/openjdk-19

JAVA_VERSION

19

LANG

C.UTF-8

PATH

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

VERSION

dev-b15dc15


Layers

[#000] sha256:7a6db449b51b92eac5c81cdbd82917785343f1664b2be57b22337b0a40c5b29d - 6.1% (29.9 MB)

[#001] sha256:97b1c853f5d1e2529f16cddde75874e53c112a9bee4b0954afb1bb8a2a29044b - 0.31% (1.51 MB)

[#002] sha256:6e4b15c614561fc8a5ace9b293fd94c433c6983ab8c77cc5ff08a9a167b4806f - 38.2% (187 MB)

[#003] sha256:aa10f0de9435b1cedddf08316feeecd9cbbabd0287c42c9a35539234a6f85248 - 11.18% (54.9 MB)

[#004] sha256:c6d86a21ef8d0917723ab338ac8ddec4363b2fd3dc7907c3a892a4bfe71b4f87 - 0.0% (2.96 KB)

[#005] sha256:cde761d9654e1f26eb32529bf3c28ee840288481d5d12ec8aeb2efb7c0facd6c - 0.0% (364 Bytes)

[#006] sha256:0ac4d50df66d2274113f661c06c905c250789f7fe3eb076f4744517456c1ec13 - 11.5% (56.4 MB)

[#007] sha256:6e94795bbf4af8dc3692eaf46fda33b77a4c8afc9ed3a100f5f68bb913e10cf6 - 0.0% (2.58 KB)

[#008] sha256:239ea1849b4e2f5d3d8402b982831f5fe1ab92711e6f28596a11b0bd1f6efb5a - 0.0% (259 Bytes)

[#009] sha256:df94adfeb66b3bc5db6f8cd29dec31bc652ce262c22f48e5501f9ecf06c61135 - 2.89% (14.2 MB)

[#010] sha256:5a43b60a47f6bde36df604a1c7d148900abc95731c1f9e0075155da0c787fcfd - 0.0% (92 Bytes)

[#011] sha256:9796806ceb79ed7c530787298001606a45414e730bf9bbad8a7bb3dd5c000a5b - 29.81% (146 MB)


History
2022-08-23 00:20:50 UTC

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

2022-08-23 00:20:51 UTC

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

2022-08-23 04:29:36 UTC

/bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates p11-kit ; rm -rf /var/lib/apt/lists/*

2022-08-23 04:31:01 UTC

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

2022-08-23 04:31:01 UTC

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

2022-08-23 04:31:01 UTC

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

2022-08-23 04:31:01 UTC

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

2022-08-23 04:31:31 UTC

/bin/sh -c set -eux; arch="$(dpkg --print-architecture)"; case "$arch" in 'amd64') downloadUrl='https://download.java.net/java/GA/jdk19/877d6127e982470ba2a7faa31cc93d04/36/GPL/openjdk-19_linux-x64_bin.tar.gz'; downloadSha256='f47aba585cfc9ecff1ed8e023524e8309f4315ed8b80100b40c7dcc232c12f96'; ;; 'arm64') downloadUrl='https://download.java.net/java/GA/jdk19/877d6127e982470ba2a7faa31cc93d04/36/GPL/openjdk-19_linux-aarch64_bin.tar.gz'; downloadSha256='682bfb48158ca198393c4b7fd38f873e8d6316b0bc6511a07e917f7f0f3afb03'; ;; *) echo >&2 "error: unsupported architecture: '$arch'"; exit 1 ;; esac; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends wget ; rm -rf /var/lib/apt/lists/*; wget --progress=dot:giga -O openjdk.tgz "$downloadUrl"; 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*; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; { echo '#!/usr/bin/env bash'; echo 'set -Eeuo pipefail'; echo 'trust extract --overwrite --format=java-cacerts --filter=ca-anchors --purpose=server-auth "$JAVA_HOME/lib/security/cacerts"'; } > /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

2022-08-23 04:31:32 UTC

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

2022-09-07 18:17:09 UTC

/bin/sh -c #(nop) ARG DOCKER_BUILD_ARCH=amd64

2022-09-07 18:17:48 UTC

|1 DOCKER_BUILD_ARCH=amd64 /bin/sh -c apt-get update && apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common

2022-09-07 18:17:52 UTC

|1 DOCKER_BUILD_ARCH=amd64 /bin/sh -c curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add -

2022-09-07 18:17:54 UTC

|1 DOCKER_BUILD_ARCH=amd64 /bin/sh -c arch=$(dpkg --print-architecture) && add-apt-repository "deb [arch=${arch}] https://download.docker.com/linux/debian $(lsb_release -cs) stable"

2022-09-07 18:18:07 UTC

|1 DOCKER_BUILD_ARCH=amd64 /bin/sh -c apt-get update && apt-get install -y docker-ce-cli jq

2022-09-07 18:18:09 UTC

|1 DOCKER_BUILD_ARCH=amd64 /bin/sh -c curl -fsSLo /usr/share/keyrings/kubernetes-archive-keyring.gpg https://packages.cloud.google.com/apt/doc/apt-key.gpg

2022-09-07 18:18:11 UTC

|1 DOCKER_BUILD_ARCH=amd64 /bin/sh -c echo "deb [signed-by=/usr/share/keyrings/kubernetes-archive-keyring.gpg] https://apt.kubernetes.io/ kubernetes-xenial main" | tee /etc/apt/sources.list.d/kubernetes.list

2022-09-07 18:18:19 UTC

|1 DOCKER_BUILD_ARCH=amd64 /bin/sh -c apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y kubectl

2022-09-07 18:18:20 UTC

/bin/sh -c #(nop) ARG VERSION=0.40.4

2022-09-07 18:18:20 UTC

/bin/sh -c #(nop) ENV APPLICATION=airbyte-container-orchestrator

2022-09-07 18:18:21 UTC

/bin/sh -c #(nop) ENV VERSION=dev-b15dc15

2022-09-07 18:18:22 UTC

/bin/sh -c #(nop) ENV AIRBYTE_ENTRYPOINT=/app/airbyte-container-orchestrator-dev-b15dc15/bin/airbyte-container-orchestrator

2022-09-07 18:18:23 UTC

/bin/sh -c #(nop) WORKDIR /app

2022-09-07 18:18:25 UTC

/bin/sh -c #(nop) ADD file:3d9fa77ef83baca077907401ad2f7d3059b8216137c35f7b9e9767f8494556a4 in /app

2022-09-07 18:18:28 UTC

/bin/sh -c #(nop) ENTRYPOINT ["/bin/bash" "-c" "/app/${APPLICATION}-${VERSION}/bin/${APPLICATION}"]

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