2022-07-05 13:48:03 UTC
214 MB
docker
GPG_KEYA035C8C19219BA821ECEA86B64E628F8D684696D
LANGC.UTF-8
PATH/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PIP_DISABLE_PIP_VERSION_CHECK1
PIP_NO_CACHE_DIR1
PYTHON_GET_PIP_SHA256ba3ab8267d91fd41c58dbce08f76db99f747f716d85ce1865813842bb035524d
PYTHON_GET_PIP_URLhttps://github.com/pypa/get-pip/raw/6ce3639da143c5d79b44f94b04080abf2531fd6e/public/get-pip.py
PYTHON_PIP_VERSION22.0.4
PYTHON_SETUPTOOLS_VERSION58.1.0
PYTHON_VERSION3.10.5
[#000] sha256:b85a868b505ffd0342a37e6a3b1c49f7c71878afe569a807e6238ef08252fcb7 - 14.01% (29.9 MB)
[#001] sha256:e2be974225eda2dba71b5e519b9cef7d7958fa2bd12448b10eaecb4b95000eeb - 0.48% (1.03 MB)
[#002] sha256:b41d2e1d193740ed01d296c0bf6a6aeb72501da60451735f8422318ae9e5401b - 5.26% (11.2 MB)
[#003] sha256:f6edef4f72a413275f1493dee2ce8413be5a8223a378294b6e77a4c47a455922 - 0.0% (233 Bytes)
[#004] sha256:3968cb080aabd142a7d5a2576e5f3282083fe194b2266e852603383136ca19b4 - 1.41% (3.02 MB)
[#005] sha256:2c312759516404eb93304650b3728e989c15f34b948ba29f42657e7b9044ae57 - 0.0% (126 Bytes)
[#006] sha256:a2a8de6ed036e022cf3a99043d59ff5ecb077ea5d6088629276e26f3b910de14 - 37.82% (80.8 MB)
[#007] sha256:5513918a5cd96f9597979b7a8f31296d1bbd4b0c30b50bd6029310eabc18b7be - 1.97% (4.2 MB)
[#008] sha256:77f4da40fc24155a14b79e511e8bf9317af56b38a912011130effce4001e121b - 0.0% (813 Bytes)
[#009] sha256:208878d9f6fc6c6ecafc2fd32e3ec8aaddaec1072fe55849683b3e5f6ca3b59c - 17.68% (37.8 MB)
[#010] sha256:5f263d5e9a20165cc202f295cf57aad96749fb85daf5ccf4fe24cef805149a6d - 12.78% (27.3 MB)
[#011] sha256:6e1c675f9ae2e92dcf04cd661ea6698e6e7874ea16511a7f5795214002fdc00d - 8.6% (18.4 MB)
[#012] sha256:4533e685eb2f21502ba5e196343bd3952ad29130dd25bfcba2d11827fdc44ce0 - 0.0% (1.87 KB)
/bin/sh -c #(nop) ADD file:8adbbab04d6f84cd83b5f4205b89b0acb7ecbf27a1bb2dc181d0a629479039fe in /
2022-06-23 00:20:27 UTC/bin/sh -c #(nop) CMD ["bash"]
2022-06-23 09:52:17 UTC/bin/sh -c #(nop) ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2022-06-23 09:52:17 UTC/bin/sh -c #(nop) ENV LANG=C.UTF-8
2022-06-23 09:52:22 UTC/bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates netbase tzdata ; rm -rf /var/lib/apt/lists/*
2022-06-23 09:52:22 UTC/bin/sh -c #(nop) ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D
2022-06-23 10:45:10 UTC/bin/sh -c #(nop) ENV PYTHON_VERSION=3.10.5
2022-06-24 02:46:09 UTC/bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends dpkg-dev gcc gnupg dirmngr 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 ; 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"; GNUPGHOME="$(mktemp -d)"; export GNUPGHOME; gpg --batch --keyserver hkps://keys.openpgp.org --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 --extract --directory /usr/src/python --strip-components=1 --file 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-lto --with-system-expat --without-ensurepip ; nproc="$(nproc)"; make -j "$nproc" LDFLAGS="-Wl,--strip-all" ; make install; cd /; 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 'libpython*.a' \) \) \) -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
2022-06-24 02:46:09 UTC/bin/sh -c set -eux; for src in idle3 pydoc3 python3 python3-config; do dst="$(echo "$src" | tr -d 3)"; [ -s "/usr/local/bin/$src" ]; [ ! -e "/usr/local/bin/$dst" ]; ln -svT "$src" "/usr/local/bin/$dst"; done
2022-06-24 02:46:09 UTC/bin/sh -c #(nop) ENV PYTHON_PIP_VERSION=22.0.4
2022-06-24 02:46:09 UTC/bin/sh -c #(nop) ENV PYTHON_SETUPTOOLS_VERSION=58.1.0
2022-06-24 02:46:10 UTC/bin/sh -c #(nop) ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/6ce3639da143c5d79b44f94b04080abf2531fd6e/public/get-pip.py
2022-06-24 02:46:10 UTC/bin/sh -c #(nop) ENV PYTHON_GET_PIP_SHA256=ba3ab8267d91fd41c58dbce08f76db99f747f716d85ce1865813842bb035524d
2022-06-24 02:46:21 UTC/bin/sh -c set -eux; 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 -c -; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; export PYTHONDONTWRITEBYTECODE=1; python get-pip.py --disable-pip-version-check --no-cache-dir --no-compile "pip==$PYTHON_PIP_VERSION" "setuptools==$PYTHON_SETUPTOOLS_VERSION" ; rm -f get-pip.py; pip --version
2022-06-24 02:46:21 UTC/bin/sh -c #(nop) CMD ["python3"]
2022-07-05 13:45:13 UTC/bin/sh -c #(nop) WORKDIR /app
2022-07-05 13:45:13 UTC/bin/sh -c #(nop) ENV PIP_DISABLE_PIP_VERSION_CHECK=1
2022-07-05 13:45:13 UTC/bin/sh -c #(nop) ENV PIP_NO_CACHE_DIR=1
2022-07-05 13:45:24 UTC/bin/sh -c apt-get update && apt-get install -y --no-install-recommends gcc make libc6-dev perl wget && apt-get remove -y openssl
2022-07-05 13:46:49 UTC/bin/sh -c wget https://www.openssl.org/source/openssl-1.1.1p.tar.gz && tar xzf openssl-1.1.1p.tar.gz && cd openssl-1.1.1p && ./config -Wl,--enable-new-dtags,-rpath,'$(LIBRPATH)' && make -j && make install_sw install_ssldirs && ldconfig && cd .. && rm -rf openssl-1.1.1p.tar.gz openssl-1.1.1p
2022-07-05 13:46:49 UTC/bin/sh -c #(nop) COPY file:d9f24079589d4af6d419372803149748b15aee9fa6c8b7d17e430fdc29d83204 in /app/
2022-07-05 13:47:08 UTC/bin/sh -c python3 -m pip install --upgrade pip && pip install -r requirements.txt --use-deprecated=legacy-resolver
2022-07-05 13:47:15 UTC/bin/sh -c #(nop) WORKDIR /app
2022-07-05 13:47:16 UTC/bin/sh -c #(nop) COPY dir:0405b437f025faafb8fb23b1261c67fb587788cd63d3b0206701b49337b5ece8 in /app/
2022-07-05 13:48:02 UTC/bin/sh -c set -ex && DEPS="avahi-daemon libnss-mdns libzstd-dev" && apt-get update && apt-get install -y --no-install-recommends $DEPS && apt-get remove -y openssl && echo '*' > /etc/mdns.allow && sed -i "s/hosts:.*/hosts: files mdns4 dns/g" /etc/nsswitch.conf && printf "[server]\nenable-dbus=no\n" >> /etc/avahi/avahi-daemon.conf && chmod 777 /etc/avahi/avahi-daemon.conf && mkdir -p /var/run/avahi-daemon && chown avahi:avahi /var/run/avahi-daemon && chmod 777 /var/run/avahi-daemon && mkdir /db && chmod 777 /app && chmod 777 /db && wget https://curl.se/download/curl-7.84.0.tar.gz && tar xzf curl-7.84.0.tar.gz && cd curl-7.84.0 && ./configure --with-openssl && make -j8 install && cd .. && rm -rf curl-7.84.0.tar.gz curl-7.84.0 && rm -rf /var/lib/apt/lists/* && apt-get purge -y --auto-remove gcc libc6-dev wget perl make && apt-get autoremove -y
2022-07-05 13:48:03 UTC/bin/sh -c useradd -u 1001 redisinsight
2022-07-05 13:48:03 UTC/bin/sh -c #(nop) USER redisinsight
2022-07-05 13:48:03 UTC/bin/sh -c #(nop) ENV APP_PLATFORM=docker
2022-07-05 13:48:03 UTC/bin/sh -c #(nop) EXPOSE 8001
2022-07-05 13:48:03 UTC/bin/sh -c #(nop) ENTRYPOINT ["bash" "./docker-entry.sh"]
2022-07-05 13:48:03 UTC/bin/sh -c #(nop) CMD ["python" "entry.pyc"]
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.