2022-02-28 09:47:22 UTC
3.44 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.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_ADDR0.0.0.0
ZEPPELIN_HOME/opt/zeppelin
Z_VERSION0.10.1
[#000] sha256:08c01a0ec47e82ebe2bec112f373d160983a6d1e9e66627f66a3322bc403221b - 0.77% (27.2 MB)
[#001] sha256:ef9b2b4b890c791c98ccbea55516a885074bfc17950c730ff980009384bb1d9a - 1.78% (62.5 MB)
[#002] sha256:c264a4ddcb63b99c5a6fae200057b3ac9af5ca4e066a778ac62ace306c9b9e60 - 0.0% (353 Bytes)
[#003] sha256:d2eb3b7ce6a3a20a58705d81c6cf7b84b36c97f129a5eee4b6d0b6d74ee31d94 - 18.52% (652 MB)
[#004] sha256:fc279a0e12ee880c50a71944d6a3160cc6ef015387b51e3f5c7a2c604148260f - 78.93% (2.71 GB)
[#005] sha256:3dcc3a48d8e14ab00c22292d0045a671eca57231e034c2732d430f0a3b9e0957 - 0.0% (767 Bytes)
[#006] sha256:eb8d57c14b1e13445e95914bb1ed2defb071e0b5bdf7e6bc6af2d1f61e5eb4ee - 0.0% (839 Bytes)
[#007] sha256:7b65b05be390121df4ac1050010fcefb5c3d84e11484e0897b448a200c1fcdbd - 0.0% (1.13 KB)
[#008] sha256:86461e2421652944e7b44ba388ea97a67203ec506771b3b559219263b4c9b899 - 0.0% (1.13 KB)
[#009] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
/bin/sh -c #(nop) ADD file:3ccf747d646089ed7fbb43c40c45dd43e86f0674115f856efada93c7e4a63624 in /
2022-02-02 02:14:46 UTC/bin/sh -c #(nop) CMD ["bash"]
2022-02-28 09:25:59 UTC (buildkit.dockerfile.v0)LABEL maintainer=Apache Software Foundation <dev@zeppelin.apache.org>
2022-02-28 09:25:59 UTC (buildkit.dockerfile.v0)ENV Z_VERSION=0.10.1
2022-02-28 09:25:59 UTC (buildkit.dockerfile.v0)ENV LOG_TAG=[ZEPPELIN_0.10.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-8-openjdk-amd64 ZEPPELIN_ADDR=0.0.0.0
2022-02-28 09:25:59 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
2022-02-28 09:25:59 UTC (buildkit.dockerfile.v0)ARG miniconda_version=py37_4.9.2
2022-02-28 09:25:59 UTC (buildkit.dockerfile.v0)ARG miniconda_sha256=79510c6e7bd9e012856e25dcb21b3e093aa4ac8113d9aa7e82a86987eabe1c31
2022-02-28 09:25:59 UTC (buildkit.dockerfile.v0)COPY env_python_3_with_R.yml /env_python_3_with_R.yml # buildkit
2022-02-28 09:31:55 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
2022-02-28 09:31:55 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
2022-02-28 09:47:22 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
2022-02-28 09:47:22 UTC (buildkit.dockerfile.v0)COPY log4j.properties /opt/zeppelin/conf/ # buildkit
2022-02-28 09:47:22 UTC (buildkit.dockerfile.v0)COPY log4j_docker.properties /opt/zeppelin/conf/ # buildkit
2022-02-28 09:47:22 UTC (buildkit.dockerfile.v0)COPY log4j2.properties /opt/zeppelin/conf/ # buildkit
2022-02-28 09:47:22 UTC (buildkit.dockerfile.v0)COPY log4j2_docker.properties /opt/zeppelin/conf/ # buildkit
2022-02-28 09:47:22 UTC (buildkit.dockerfile.v0)USER 1000
2022-02-28 09:47:22 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{}]
2022-02-28 09:47:22 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["/usr/bin/tini" "--"]
2022-02-28 09:47:22 UTC (buildkit.dockerfile.v0)WORKDIR /opt/zeppelin
2022-02-28 09:47:22 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.