2021-08-24 06:54:46 UTC
3.33 GB
/opt/zeppelin
JAVA_HOME/usr/lib/jvm/java-8-openjdk-amd64
LANGen_US.UTF-8
LC_ALLen_US.UTF-8
LOG_TAG[ZEPPELIN_0.10.0]:
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_ADDR0.0.0.0
ZEPPELIN_HOME/opt/zeppelin
Z_VERSION0.10.0
[#000] sha256:16ec32c2132b43494832a05f2b02f7a822479f8250c173d0ab27b3de78b2f058 - 0.8% (27.2 MB)
[#001] sha256:aafd5bdc2bb7f28089ff40fe876a2b9984c0a9d7b7b7188241671c88fa075936 - 1.83% (62.5 MB)
[#002] sha256:0bb58b150809ae46a8a63dafa620ab0387ee62fab72b6147063a930bf34dbdcb - 0.0% (350 Bytes)
[#003] sha256:68d71ea3a2969f1e452b2914c324593dbd6e7e9ce0097346ba86486fb4e74385 - 18.62% (635 MB)
[#004] sha256:9c7277321f0ce542c3fec237c9069217e75e10cade9bcffe36ff73a4b6cad7cc - 78.75% (2.62 GB)
[#005] sha256:6be3e4488900eefde3381dafecbd5bce3d1e8929f827b2ad400b807ea7ecfe1f - 0.0% (762 Bytes)
[#006] sha256:622d30c2f6491ea97dcc1708987c90d9cab103c58dcb37fb3aecec0d57fa20b9 - 0.0% (835 Bytes)
[#007] sha256:d10a38bf471f71e1a015f6e2d9bd22f4dc7ba26eedd1d3910cb73413fef44c9a - 0.0% (1.12 KB)
[#008] sha256:4006c4346d4510fbfaa8372fcdc43564b4e26dd35208d98c29f27b5b55ae29f3 - 0.0% (1.13 KB)
[#009] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
/bin/sh -c #(nop) ADD file:524e8d93ad65f08a0cb0d144268350186e36f508006b05b8faf2e1289499b59f in /
2021-07-26 21:21:40 UTC/bin/sh -c #(nop) CMD ["bash"]
2021-08-24 06:37:38 UTC (buildkit.dockerfile.v0)LABEL maintainer=Apache Software Foundation <dev@zeppelin.apache.org>
2021-08-24 06:37:38 UTC (buildkit.dockerfile.v0)ENV Z_VERSION=0.10.0
2021-08-24 06:37:38 UTC (buildkit.dockerfile.v0)ENV LOG_TAG=[ZEPPELIN_0.10.0]: ZEPPELIN_HOME=/opt/zeppelin HOME=/opt/zeppelin LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64 ZEPPELIN_ADDR=0.0.0.0
2021-08-24 06:37:38 UTC (buildkit.dockerfile.v0)RUN /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-8-jre-headless wget unzip && rm -rf /var/lib/apt/lists/* && apt-get autoclean && apt-get clean # buildkit
2021-08-24 06:37:38 UTC (buildkit.dockerfile.v0)ARG miniconda_version=py37_4.9.2
2021-08-24 06:37:38 UTC (buildkit.dockerfile.v0)ARG miniconda_sha256=79510c6e7bd9e012856e25dcb21b3e093aa4ac8113d9aa7e82a86987eabe1c31
2021-08-24 06:37:38 UTC (buildkit.dockerfile.v0)COPY env_python_3_with_R.yml /env_python_3_with_R.yml # buildkit
2021-08-24 06:42:23 UTC (buildkit.dockerfile.v0)RUN |2 miniconda_version=py37_4.9.2 miniconda_sha256=79510c6e7bd9e012856e25dcb21b3e093aa4ac8113d9aa7e82a86987eabe1c31 /bin/sh -c set -ex && wget -nv https://repo.anaconda.com/miniconda/Miniconda3-${miniconda_version}-Linux-x86_64.sh -O miniconda.sh && echo "${miniconda_sha256} miniconda.sh" > anaconda.sha256 && sha256sum --strict -c anaconda.sha256 && 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 update -f /env_python_3_with_R.yml --prune && rm -v miniconda.sh anaconda.sha256 && find /opt/conda/ -follow -type f -name '*.a' -delete && find /opt/conda/ -follow -type f -name '*.js.map' -delete && mamba clean -ay # buildkit
2021-08-24 06:42: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
2021-08-24 06:54:46 UTC (buildkit.dockerfile.v0)RUN |2 miniconda_version=py37_4.9.2 miniconda_sha256=79510c6e7bd9e012856e25dcb21b3e093aa4ac8113d9aa7e82a86987eabe1c31 /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
2021-08-24 06:54:46 UTC (buildkit.dockerfile.v0)COPY log4j.properties /opt/zeppelin/conf/ # buildkit
2021-08-24 06:54:46 UTC (buildkit.dockerfile.v0)COPY log4j_docker.properties /opt/zeppelin/conf/ # buildkit
2021-08-24 06:54:46 UTC (buildkit.dockerfile.v0)COPY log4j2.properties /opt/zeppelin/conf/ # buildkit
2021-08-24 06:54:46 UTC (buildkit.dockerfile.v0)COPY log4j2_docker.properties /opt/zeppelin/conf/ # buildkit
2021-08-24 06:54:46 UTC (buildkit.dockerfile.v0)USER 1000
2021-08-24 06:54:46 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{}]
2021-08-24 06:54:46 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["/usr/bin/tini" "--"]
2021-08-24 06:54:46 UTC (buildkit.dockerfile.v0)WORKDIR /opt/zeppelin
2021-08-24 06:54:46 UTC (buildkit.dockerfile.v0)CMD ["bin/zeppelin.sh"]
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.