Namespace
apache
Image / Tag
zeppelin:0.12.1
Content Digest
sha256:ebb76b9b98f1b5457cd10c118fc6624269918a3602711a08d9f237673c0c0abb
Details
Created

2026-06-14 02:25:42 UTC

Size

2.55 GB

Content Digest
Labels
  • maintainer
    Apache Software Foundation <dev@zeppelin.apache.org>
  • org.opencontainers.image.ref.name
    ubuntu
  • org.opencontainers.image.version
    20.04

Environment
HOME

/opt/zeppelin

JAVA_HOME

/usr/lib/jvm/java-11-openjdk

LANG

en_US.UTF-8

LC_ALL

en_US.UTF-8

LOG_TAG

[ZEPPELIN_0.12.1]:

PATH

/opt/conda/envs/python_3_with_R/bin:/opt/conda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

ZEPPELIN_ADDR

0.0.0.0

ZEPPELIN_HOME

/opt/zeppelin

Z_VERSION

0.12.1


Layers

[#000] sha256:13b7e930469f6d3575a320709035c6acf6f5485a76abcf03d1b92a64c09c2476 - 1.0% (26.2 MB)

[#001] sha256:6cb350d070f009a881650062abfca61131928a682368729cd0ca479e6a617bbe - 6.5% (170 MB)

[#002] sha256:9f82974fcad89f48cde37f40034d3dd68bd829a02b5f03b477d48bba05cfeb01 - 0.0% (353 Bytes)

[#003] sha256:b565956efd3a0d2a49314e6c1303a616f7010aef1fb7f990c12a19fce6b869a8 - 29.66% (775 MB)

[#004] sha256:9e209fb3c04fba435f7a79cd481ab2188dcea05d7eb8486a37090b63a5a802f3 - 62.84% (1.6 GB)

[#005] sha256:23871bde9432237f12d7af6bfb609c8e013345f2e20074e4289b3506b74c2114 - 0.0% (770 Bytes)

[#006] sha256:7946807d8c4bcaec05468c403d5cc26c651508fd78b1e6ab0b0d0aec4437ff81 - 0.0% (844 Bytes)

[#007] sha256:58e9695b177b1b749095f89449234f34cf857ed956ed2c8552e2641a4975093e - 0.0% (1.13 KB)

[#008] sha256:f3ceae8853ce7dc38bcd53806d39d5fc9dc08a52ee37cb1dcbcd1625781175fe - 0.0% (1.14 KB)

[#009] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)


History
2025-04-08 10:42:46 UTC

/bin/sh -c #(nop) ARG RELEASE

2025-04-08 10:42:46 UTC

/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH

2025-04-08 10:42:46 UTC

/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu

2025-04-08 10:42:46 UTC

/bin/sh -c #(nop) LABEL org.opencontainers.image.version=20.04

2025-04-08 10:42:48 UTC

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

2025-04-08 10:42:48 UTC

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

2026-06-14 01:54:45 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH=amd64

2026-06-14 01:54:45 UTC (buildkit.dockerfile.v0)

LABEL maintainer=Apache Software Foundation <dev@zeppelin.apache.org>

2026-06-14 01:54:45 UTC (buildkit.dockerfile.v0)

ENV Z_VERSION=0.12.1

2026-06-14 01:54:45 UTC (buildkit.dockerfile.v0)

ENV LOG_TAG=[ZEPPELIN_0.12.1]: ZEPPELIN_HOME=/opt/zeppelin HOME=/opt/zeppelin LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 JAVA_HOME=/usr/lib/jvm/java-11-openjdk ZEPPELIN_ADDR=0.0.0.0

2026-06-14 01:54:45 UTC (buildkit.dockerfile.v0)

RUN |1 TARGETARCH=amd64 /bin/sh -c echo "$LOG_TAG install basic packages" && apt-get -y update && DEBIAN_FRONTEND=noninteractive apt-get install -y locales language-pack-en tini openjdk-11-jdk-headless wget unzip && ln -s /usr/lib/jvm/java-11-openjdk-* /usr/lib/jvm/java-11-openjdk && rm -rf /var/lib/apt/lists/* && apt-get autoclean && apt-get clean # buildkit

2026-06-14 01:54:45 UTC (buildkit.dockerfile.v0)

ARG miniconda_version=py39_24.1.2-0

2026-06-14 01:54:45 UTC (buildkit.dockerfile.v0)

COPY env_python_3_with_R.yml /env_python_3_with_R.yml # buildkit

2026-06-14 02:18:17 UTC (buildkit.dockerfile.v0)

RUN |2 TARGETARCH=amd64 miniconda_version=py39_24.1.2-0 /bin/sh -c set -ex && if [ "$TARGETARCH" = "amd64" ]; then MINICONDA_ARCH="x86_64"; MINICONDA_SHA256="2ec135e4ae2154bb41e8df9ecac7ef23a7d6ca59fc1c8071cfe5298505c19140"; elif [ "$TARGETARCH" = "arm64" ]; then MINICONDA_ARCH="aarch64"; MINICONDA_SHA256="b3e7d8ad4a4c9106594b268ab1cd9494ce982eaf7734bb2cd13a47e14e92a43e"; else echo "Unsupported architecture: $TARGETARCH" && exit 1; fi && wget -nv https://repo.anaconda.com/miniconda/Miniconda3-${miniconda_version}-Linux-${MINICONDA_ARCH}.sh -O miniconda.sh && ACTUAL_SHA256=$(sha256sum miniconda.sh | cut -d' ' -f1) && if [ "$ACTUAL_SHA256" != "$MINICONDA_SHA256" ]; then echo "SHA256 verification failed! Expected: $MINICONDA_SHA256, Got: $ACTUAL_SHA256" && exit 1; fi && bash miniconda.sh -b -p /opt/conda && export PATH=/opt/conda/bin:$PATH && conda config --set always_yes yes --set changeps1 no && conda info -a && conda install mamba -c conda-forge && mamba env create -f /env_python_3_with_R.yml && rm -fv miniconda.sh && find /opt/conda/ -follow -type f -name '*.a' -delete && find /opt/conda/ -follow -type f -name '*.js.map' -delete && mamba clean -ay # buildkit

2026-06-14 02:18:17 UTC (buildkit.dockerfile.v0)

ENV PATH=/opt/conda/envs/python_3_with_R/bin:/opt/conda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2026-06-14 02:25:36 UTC (buildkit.dockerfile.v0)

RUN |2 TARGETARCH=amd64 miniconda_version=py39_24.1.2-0 /bin/sh -c echo "$LOG_TAG Download Zeppelin binary" && mkdir -p ${ZEPPELIN_HOME} && wget -nv -O /tmp/zeppelin-${Z_VERSION}-bin-all.tgz "https://archive.apache.org/dist/zeppelin/zeppelin-${Z_VERSION}/zeppelin-${Z_VERSION}-bin-all.tgz" && tar --strip-components=1 -zxvf /tmp/zeppelin-${Z_VERSION}-bin-all.tgz -C ${ZEPPELIN_HOME} && rm -f /tmp/zeppelin-${Z_VERSION}-bin-all.tgz && chown -R root:root ${ZEPPELIN_HOME} && mkdir -p ${ZEPPELIN_HOME}/logs ${ZEPPELIN_HOME}/run ${ZEPPELIN_HOME}/webapps && chgrp root /etc/passwd && chmod ug+rw /etc/passwd && chmod -R 775 "${ZEPPELIN_HOME}/logs" "${ZEPPELIN_HOME}/run" "${ZEPPELIN_HOME}/notebook" "${ZEPPELIN_HOME}/conf" && chmod 775 ${ZEPPELIN_HOME} && chmod -R 775 /opt/conda # buildkit

2026-06-14 02:25:42 UTC (buildkit.dockerfile.v0)

COPY log4j.properties /opt/zeppelin/conf/ # buildkit

2026-06-14 02:25:42 UTC (buildkit.dockerfile.v0)

COPY log4j_docker.properties /opt/zeppelin/conf/ # buildkit

2026-06-14 02:25:42 UTC (buildkit.dockerfile.v0)

COPY log4j2.properties /opt/zeppelin/conf/ # buildkit

2026-06-14 02:25:42 UTC (buildkit.dockerfile.v0)

COPY log4j2_docker.properties /opt/zeppelin/conf/ # buildkit

2026-06-14 02:25:42 UTC (buildkit.dockerfile.v0)

USER 1000

2026-06-14 02:25:42 UTC (buildkit.dockerfile.v0)

EXPOSE [8080/tcp]

2026-06-14 02:25:42 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/usr/bin/tini" "--"]

2026-06-14 02:25:42 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/zeppelin

2026-06-14 02:25:42 UTC (buildkit.dockerfile.v0)

CMD ["bin/zeppelin.sh"]

Details
Created

2026-06-14 02:06:38 UTC

Size

2.55 GB

Content Digest
Labels
  • maintainer
    Apache Software Foundation <dev@zeppelin.apache.org>
  • org.opencontainers.image.ref.name
    ubuntu
  • org.opencontainers.image.version
    20.04

Environment
HOME

/opt/zeppelin

JAVA_HOME

/usr/lib/jvm/java-11-openjdk

LANG

en_US.UTF-8

LC_ALL

en_US.UTF-8

LOG_TAG

[ZEPPELIN_0.12.1]:

PATH

/opt/conda/envs/python_3_with_R/bin:/opt/conda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

ZEPPELIN_ADDR

0.0.0.0

ZEPPELIN_HOME

/opt/zeppelin

Z_VERSION

0.12.1


Layers

[#000] sha256:ecd83b6c354452b6a9979c7666bba16927f1e60e2afbfe6401dd6f87d5db8576 - 0.95% (24.8 MB)

[#001] sha256:4c6d900d5120f0a0d1b14aa833ce730489bde578f508934afb63932d998ee504 - 6.3% (165 MB)

[#002] sha256:9f82974fcad89f48cde37f40034d3dd68bd829a02b5f03b477d48bba05cfeb01 - 0.0% (353 Bytes)

[#003] sha256:4a66eddbd13710bf0f359049d39fffbc8b977fa94fce10c8008da109c51c4428 - 31.48% (823 MB)

[#004] sha256:cb130c3e585f172ea530cb3858ebcdf93be97e634f0e493448783b0a11c78208 - 61.27% (1.56 GB)

[#005] sha256:fc71c701142bc45738e6998f7f1232001bfdaf2c6b4b5aa545ffcef548b86c6d - 0.0% (768 Bytes)

[#006] sha256:77887b2f296fc9670dcf9a929de6eec2bbfec75259ef75a787cf2441bc78efa7 - 0.0% (842 Bytes)

[#007] sha256:03c5ffd80b0c3b1981a4b3c8eba100f03918d29dd50b1e3dbecf8373e4d22360 - 0.0% (1.13 KB)

[#008] sha256:ec9f5e2c97060a2f5984678502d01f22ff5e8aab8cd16110eb47397282356166 - 0.0% (1.13 KB)

[#009] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)


History
2025-04-08 10:46:43 UTC

/bin/sh -c #(nop) ARG RELEASE

2025-04-08 10:46:43 UTC

/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH

2025-04-08 10:46:43 UTC

/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu

2025-04-08 10:46:43 UTC

/bin/sh -c #(nop) LABEL org.opencontainers.image.version=20.04

2025-04-08 10:46:45 UTC

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

2025-04-08 10:46:45 UTC

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

2026-06-14 01:54:04 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH=arm64

2026-06-14 01:54:04 UTC (buildkit.dockerfile.v0)

LABEL maintainer=Apache Software Foundation <dev@zeppelin.apache.org>

2026-06-14 01:54:04 UTC (buildkit.dockerfile.v0)

ENV Z_VERSION=0.12.1

2026-06-14 01:54:04 UTC (buildkit.dockerfile.v0)

ENV LOG_TAG=[ZEPPELIN_0.12.1]: ZEPPELIN_HOME=/opt/zeppelin HOME=/opt/zeppelin LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 JAVA_HOME=/usr/lib/jvm/java-11-openjdk ZEPPELIN_ADDR=0.0.0.0

2026-06-14 01:54:04 UTC (buildkit.dockerfile.v0)

RUN |1 TARGETARCH=arm64 /bin/sh -c echo "$LOG_TAG install basic packages" && apt-get -y update && DEBIAN_FRONTEND=noninteractive apt-get install -y locales language-pack-en tini openjdk-11-jdk-headless wget unzip && ln -s /usr/lib/jvm/java-11-openjdk-* /usr/lib/jvm/java-11-openjdk && rm -rf /var/lib/apt/lists/* && apt-get autoclean && apt-get clean # buildkit

2026-06-14 01:54:04 UTC (buildkit.dockerfile.v0)

ARG miniconda_version=py39_24.1.2-0

2026-06-14 01:54:04 UTC (buildkit.dockerfile.v0)

COPY env_python_3_with_R.yml /env_python_3_with_R.yml # buildkit

2026-06-14 02:01:23 UTC (buildkit.dockerfile.v0)

RUN |2 TARGETARCH=arm64 miniconda_version=py39_24.1.2-0 /bin/sh -c set -ex && if [ "$TARGETARCH" = "amd64" ]; then MINICONDA_ARCH="x86_64"; MINICONDA_SHA256="2ec135e4ae2154bb41e8df9ecac7ef23a7d6ca59fc1c8071cfe5298505c19140"; elif [ "$TARGETARCH" = "arm64" ]; then MINICONDA_ARCH="aarch64"; MINICONDA_SHA256="b3e7d8ad4a4c9106594b268ab1cd9494ce982eaf7734bb2cd13a47e14e92a43e"; else echo "Unsupported architecture: $TARGETARCH" && exit 1; fi && wget -nv https://repo.anaconda.com/miniconda/Miniconda3-${miniconda_version}-Linux-${MINICONDA_ARCH}.sh -O miniconda.sh && ACTUAL_SHA256=$(sha256sum miniconda.sh | cut -d' ' -f1) && if [ "$ACTUAL_SHA256" != "$MINICONDA_SHA256" ]; then echo "SHA256 verification failed! Expected: $MINICONDA_SHA256, Got: $ACTUAL_SHA256" && exit 1; fi && bash miniconda.sh -b -p /opt/conda && export PATH=/opt/conda/bin:$PATH && conda config --set always_yes yes --set changeps1 no && conda info -a && conda install mamba -c conda-forge && mamba env create -f /env_python_3_with_R.yml && rm -fv miniconda.sh && find /opt/conda/ -follow -type f -name '*.a' -delete && find /opt/conda/ -follow -type f -name '*.js.map' -delete && mamba clean -ay # buildkit

2026-06-14 02:01:23 UTC (buildkit.dockerfile.v0)

ENV PATH=/opt/conda/envs/python_3_with_R/bin:/opt/conda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2026-06-14 02:06:37 UTC (buildkit.dockerfile.v0)

RUN |2 TARGETARCH=arm64 miniconda_version=py39_24.1.2-0 /bin/sh -c echo "$LOG_TAG Download Zeppelin binary" && mkdir -p ${ZEPPELIN_HOME} && wget -nv -O /tmp/zeppelin-${Z_VERSION}-bin-all.tgz "https://archive.apache.org/dist/zeppelin/zeppelin-${Z_VERSION}/zeppelin-${Z_VERSION}-bin-all.tgz" && tar --strip-components=1 -zxvf /tmp/zeppelin-${Z_VERSION}-bin-all.tgz -C ${ZEPPELIN_HOME} && rm -f /tmp/zeppelin-${Z_VERSION}-bin-all.tgz && chown -R root:root ${ZEPPELIN_HOME} && mkdir -p ${ZEPPELIN_HOME}/logs ${ZEPPELIN_HOME}/run ${ZEPPELIN_HOME}/webapps && chgrp root /etc/passwd && chmod ug+rw /etc/passwd && chmod -R 775 "${ZEPPELIN_HOME}/logs" "${ZEPPELIN_HOME}/run" "${ZEPPELIN_HOME}/notebook" "${ZEPPELIN_HOME}/conf" && chmod 775 ${ZEPPELIN_HOME} && chmod -R 775 /opt/conda # buildkit

2026-06-14 02:06:38 UTC (buildkit.dockerfile.v0)

COPY log4j.properties /opt/zeppelin/conf/ # buildkit

2026-06-14 02:06:38 UTC (buildkit.dockerfile.v0)

COPY log4j_docker.properties /opt/zeppelin/conf/ # buildkit

2026-06-14 02:06:38 UTC (buildkit.dockerfile.v0)

COPY log4j2.properties /opt/zeppelin/conf/ # buildkit

2026-06-14 02:06:38 UTC (buildkit.dockerfile.v0)

COPY log4j2_docker.properties /opt/zeppelin/conf/ # buildkit

2026-06-14 02:06:38 UTC (buildkit.dockerfile.v0)

USER 1000

2026-06-14 02:06:38 UTC (buildkit.dockerfile.v0)

EXPOSE [8080/tcp]

2026-06-14 02:06:38 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/usr/bin/tini" "--"]

2026-06-14 02:06:38 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/zeppelin

2026-06-14 02:06:38 UTC (buildkit.dockerfile.v0)

CMD ["bin/zeppelin.sh"]

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