2020-12-22 02:49:37 UTC
290 MB
E3FF2839C048B25C084DEBE9B26995E310250568
LANGzh_CN.UTF-8
PATH/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PIP_JMS_MIRRORhttps://pypi.douban.com/simple
PIP_MIRRORhttps://pypi.douban.com/simple
PYTHON_GET_PIP_SHA2567f28b41ce236af61a00dfcbd6fd38c52d46488ece91fb4585b95775b076bbc85
PYTHON_GET_PIP_URLhttps://github.com/pypa/get-pip/raw/2357a5f805565496648ebf597bcffe9e2d9ce379/get-pip.py
PYTHON_PIP_VERSION20.3
PYTHON_VERSION3.8.6
[#000] sha256:852e50cd189dfeb54d97680d9fa6bed21a6d7d18cfb56d6abfe2de9d7f173795 - 8.92% (25.8 MB)
[#001] sha256:334ed303e4ad2f8dc872f2e845d79012ad648eaced444e009ae9a397cc4b4dbb - 0.9% (2.62 MB)
[#002] sha256:a687a65725ea883366a61d24db0f946ad384aea893297d9510e50fa13f565539 - 3.5% (10.1 MB)
[#003] sha256:fe607cb30fbe1148b5885d58c909d0c08cbf2c0848cc871845112f3ee0a0f9ba - 0.0% (234 Bytes)
[#004] sha256:af3dd7a5d35733b54120f6fcfb19a3cb912aa1c9431d0e13ffc16b428c08f170 - 0.8% (2.31 MB)
[#005] sha256:3bf0ce6ff68dbafd427f724c604d4ac8c059307cc7f70fb251c908165ace7073 - 0.0% (119 Bytes)
[#006] sha256:4dbf8cc6250c0c13302161dbe6c8d5dd314ade51c98684142c02dfcf8242242a - 0.0% (403 Bytes)
[#007] sha256:c56e3e0e788fe7b6a02dd1e16a12392a1a177ac7d9179b6927f4854ba9332800 - 37.95% (110 MB)
[#008] sha256:e7f5d677af8aceaefa571de1afd4f89062bab4123051ce891a99a905b8e03d31 - 0.0% (1.2 KB)
[#009] sha256:02853585cb688e5bbc71328176c28df3dcd928f951a5d126ed733ebbdd7f4a1d - 45.76% (133 MB)
[#010] sha256:408b2a16816ac795a7d66dc2667340c77b5142f87318fc6db39ea92d54a2cdd3 - 2.17% (6.3 MB)
[#011] sha256:4fe90e7c7d00b668293f06416186a42c46fe6d50d1d686a69781fa468b1064a9 - 0.0% (214 Bytes)
[#012] sha256:9040c623e90d2e7e1c49f8bfe7dbf354abbae98d01f7901b56ec978daddd7e2d - 0.0% (166 Bytes)
/bin/sh -c #(nop) ADD file:d2abb0e4e7ac1773741f51f57d3a0b8ffc7907348842d773f8c341ba17f856d5 in /
2020-11-17 20:21:17 UTC/bin/sh -c #(nop) CMD ["bash"]
2020-11-18 13:07:04 UTC/bin/sh -c #(nop) ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2020-11-18 13:07:04 UTC/bin/sh -c #(nop) ENV LANG=C.UTF-8
2020-11-25 02:39:37 UTC/bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates netbase ; rm -rf /var/lib/apt/lists/*
2020-11-25 02:39:37 UTC/bin/sh -c #(nop) ENV GPG_KEY=E3FF2839C048B25C084DEBE9B26995E310250568
2020-11-25 02:39:38 UTC/bin/sh -c #(nop) ENV PYTHON_VERSION=3.8.6
2020-11-25 02:49:37 UTC/bin/sh -c set -ex && savedAptMark="$(apt-mark showmanual)" && apt-get update && apt-get install -y --no-install-recommends dpkg-dev gcc libbluetooth-dev libbz2-dev libc6-dev libexpat1-dev libffi-dev libgdbm-dev liblzma-dev libncursesw5-dev libreadline-dev libsqlite3-dev libssl-dev make tk-dev uuid-dev wget xz-utils zlib1g-dev $(command -v gpg > /dev/null || echo 'gnupg dirmngr') && wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" && wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" && export GNUPGHOME="$(mktemp -d)" && gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" && gpg --batch --verify python.tar.xz.asc python.tar.xz && { command -v gpgconf > /dev/null && gpgconf --kill all || :; } && rm -rf "$GNUPGHOME" python.tar.xz.asc && mkdir -p /usr/src/python && tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz && rm python.tar.xz && cd /usr/src/python && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && ./configure --build="$gnuArch" --enable-loadable-sqlite-extensions --enable-optimizations --enable-option-checking=fatal --enable-shared --with-system-expat --with-system-ffi --without-ensurepip && make -j "$(nproc)" LDFLAGS="-Wl,--strip-all" && make install && rm -rf /usr/src/python && find /usr/local -depth \( \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' -o -name '*.a' \) \) -o \( -type f -a -name 'wininst-*.exe' \) \) -exec rm -rf '{}' + && ldconfig && apt-mark auto '.*' > /dev/null && apt-mark manual $savedAptMark && find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual && apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false && rm -rf /var/lib/apt/lists/* && python3 --version
2020-11-25 02:49:39 UTC/bin/sh -c cd /usr/local/bin && ln -s idle3 idle && ln -s pydoc3 pydoc && ln -s python3 python && ln -s python3-config python-config
2020-12-02 00:15:54 UTC/bin/sh -c #(nop) ENV PYTHON_PIP_VERSION=20.3
2020-12-02 00:15:54 UTC/bin/sh -c #(nop) ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/2357a5f805565496648ebf597bcffe9e2d9ce379/get-pip.py
2020-12-02 00:15:54 UTC/bin/sh -c #(nop) ENV PYTHON_GET_PIP_SHA256=7f28b41ce236af61a00dfcbd6fd38c52d46488ece91fb4585b95775b076bbc85
2020-12-02 00:16:08 UTC/bin/sh -c set -ex; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends wget; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum --check --strict -; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; python get-pip.py --disable-pip-version-check --no-cache-dir "pip==$PYTHON_PIP_VERSION" ; pip --version; find /usr/local -depth \( \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' +; rm -f get-pip.py
2020-12-02 00:16:09 UTC/bin/sh -c #(nop) CMD ["python3"]
2020-12-22 02:42:31 UTC/bin/sh -c #(nop) ARG PIP_MIRROR=https://pypi.douban.com/simple
2020-12-22 02:42:32 UTC/bin/sh -c #(nop) ENV PIP_MIRROR=https://pypi.douban.com/simple
2020-12-22 02:42:33 UTC/bin/sh -c #(nop) ARG PIP_JMS_MIRROR=https://pypi.douban.com/simple
2020-12-22 02:42:34 UTC/bin/sh -c #(nop) ENV PIP_JMS_MIRROR=https://pypi.douban.com/simple
2020-12-22 02:42:35 UTC/bin/sh -c #(nop) WORKDIR /opt/jumpserver
2020-12-22 02:42:37 UTC/bin/sh -c #(nop) COPY file:bacd5c9cb9c68026409360bf97be409d920557b195b52159a3ebeec82ab6cb00 in ./requirements/deb_buster_requirements.txt
2020-12-22 02:44:40 UTC/bin/sh -c sed -i 's/deb.debian.org/mirrors.aliyun.com/g' /etc/apt/sources.list && sed -i 's/security.debian.org/mirrors.aliyun.com/g' /etc/apt/sources.list && apt update && grep -v '^#' ./requirements/deb_buster_requirements.txt | xargs apt -y install && localedef -c -f UTF-8 -i zh_CN zh_CN.UTF-8 && cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
2020-12-22 02:44:42 UTC/bin/sh -c #(nop) COPY file:52cffdaec4e1ceccdfea43462e865cf00ced5ef3ffeb1d74c28164748eb46b92 in ./requirements/requirements.txt
2020-12-22 02:48:58 UTC/bin/sh -c pip install --upgrade pip==20.2.4 setuptools==49.6.0 wheel==0.34.2 -i ${PIP_MIRROR} && pip config set global.index-url ${PIP_MIRROR} && pip install --no-cache-dir $(grep 'jms' requirements/requirements.txt) -i ${PIP_JMS_MIRROR} && pip install --no-cache-dir -r requirements/requirements.txt
2020-12-22 02:49:10 UTC/bin/sh -c #(nop) COPY dir:13ec5fd596f3f749394a9b9d6165ebfce17ff8806a6cd6a96ec77f1be1bb5579 in /opt/jumpserver
2020-12-22 02:49:14 UTC/bin/sh -c mkdir -p /root/.ssh/ && echo "Host *\n\tStrictHostKeyChecking no\n\tUserKnownHostsFile /dev/null" > /root/.ssh/config
2020-12-22 02:49:19 UTC/bin/sh -c echo > config.yml
2020-12-22 02:49:22 UTC/bin/sh -c #(nop) VOLUME [/opt/jumpserver/data]
2020-12-22 02:49:25 UTC/bin/sh -c #(nop) VOLUME [/opt/jumpserver/logs]
2020-12-22 02:49:28 UTC/bin/sh -c #(nop) ENV LANG=zh_CN.UTF-8
2020-12-22 02:49:31 UTC/bin/sh -c #(nop) EXPOSE 8070
2020-12-22 02:49:34 UTC/bin/sh -c #(nop) EXPOSE 8080
2020-12-22 02:49:37 UTC/bin/sh -c #(nop) ENTRYPOINT ["./entrypoint.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.