Namespace
redislabs
Image / Tag
redisinsight:fix-key-deletion-dialog
Content Digest
sha256:21b387e6da78fb87908f9cf5b25acb3e0dd431fc5aa2fa94b7669e0d96ab4627
Details
Created

2022-05-12 08:10:24 UTC

Size

255 MB

Content Digest
Environment
APP_PLATFORM

docker

GPG_KEY

0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D

LANG

C.UTF-8

PATH

/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PYTHON_GET_PIP_SHA256

e235c437e5c7d7524fbce3880ca39b917a73dc565e0c813465b7a7a329bb279a

PYTHON_GET_PIP_URL

https://github.com/pypa/get-pip/raw/38e54e5de07c66e875c11a1ebbdb938854625dd8/public/get-pip.py

PYTHON_PIP_VERSION

22.0.4

PYTHON_SETUPTOOLS_VERSION

57.5.0

PYTHON_VERSION

3.7.13


Layers

[#000] sha256:214ca5fb90323fe769c63a12af092f2572bf1c6b300263e09883909fc865d260 - 11.72% (29.9 MB)

[#001] sha256:fa7d81b69b9af8e7d8748b3d3ccc7a4dd28dd7752c0e118ad1f3238d3b5f1ee6 - 0.4% (1.03 MB)

[#002] sha256:2fd9be6893d2407bd5f8599c7e87dd68cb930fe776a077496cb04ca2aacabf19 - 4.01% (10.2 MB)

[#003] sha256:7c8f45ffebd67f9142e302221827e7964e260aa7da0353362a507c2d00237e9e - 0.0% (233 Bytes)

[#004] sha256:bd5d814929015e122ed825308d681b9d780522dcbdf521959821f5cb4e69d222 - 1.18% (3.02 MB)

[#005] sha256:b25ae16ed9ed37d4c1d0e63409a726816b9998df4ff91f88b999477cebb7792f - 0.0% (92 Bytes)

[#006] sha256:d19484502627eb38dc10ff09248e0d2df98b8e9cd06d5ab72c250eaf8cfe71e7 - 28.25% (72.2 MB)

[#007] sha256:a8f700f7369afaf9c7124c1793d9074d9a5324bb9b24ab3a2ebf906e95ef8a77 - 0.0% (1.04 KB)

[#008] sha256:610c20596185d37a93f510b3d6904382d426242fc42973512af4696af25b60e8 - 37.01% (94.5 MB)

[#009] sha256:02db83fa773057f49942b2555a16be78c8464e1bf25d87d65ad661d0c4a2c098 - 10.64% (27.2 MB)

[#010] sha256:25644b4a2cf94a7fcdb9e8e61136288634177b4d43b36dccc1338de78fd00312 - 6.78% (17.3 MB)

[#011] sha256:fae55ea263a5a1cafa7780bbf67afbe572ccab6109a26dbf34dff676ea4a48e1 - 0.0% (1.87 KB)


History
2022-05-11 01:20:16 UTC

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

2022-05-11 01:20:16 UTC

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

2022-05-11 06:25:15 UTC

/bin/sh -c #(nop) ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2022-05-11 06:25:15 UTC

/bin/sh -c #(nop) ENV LANG=C.UTF-8

2022-05-11 06:25:20 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-05-11 08:51:27 UTC

/bin/sh -c #(nop) ENV GPG_KEY=0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D

2022-05-11 08:51:27 UTC

/bin/sh -c #(nop) ENV PYTHON_VERSION=3.7.13

2022-05-11 08:58:27 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-system-expat --without-ensurepip ; nproc="$(nproc)"; make -j "$nproc" LDFLAGS="-Wl,--strip-all" PROFILE_TASK='-m test.regrtest --pgo test_array test_base64 test_binascii test_binhex test_binop test_bytes test_c_locale_coercion test_class test_cmath test_codecs test_compile test_complex test_csv test_decimal test_dict test_float test_fstring test_hashlib test_io test_iter test_json test_long test_math test_memoryview test_pickle test_re test_set test_slice test_struct test_threading test_time test_traceback test_unicode ' ; 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' \) \) -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

2022-05-11 08:58:27 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-05-11 08:58:27 UTC

/bin/sh -c #(nop) ENV PYTHON_PIP_VERSION=22.0.4

2022-05-11 08:58:28 UTC

/bin/sh -c #(nop) ENV PYTHON_SETUPTOOLS_VERSION=57.5.0

2022-05-11 08:58:28 UTC

/bin/sh -c #(nop) ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/38e54e5de07c66e875c11a1ebbdb938854625dd8/public/get-pip.py

2022-05-11 08:58:28 UTC

/bin/sh -c #(nop) ENV PYTHON_GET_PIP_SHA256=e235c437e5c7d7524fbce3880ca39b917a73dc565e0c813465b7a7a329bb279a

2022-05-11 08:58:40 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-05-11 08:58:40 UTC

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

2022-05-12 08:09:24 UTC

/bin/sh -c #(nop) WORKDIR /app

2022-05-12 08:09:33 UTC

/bin/sh -c apt-get update && apt-get install -y --no-install-recommends gcc libc6-dev libssl-dev wget

2022-05-12 08:09:34 UTC

/bin/sh -c #(nop) COPY file:43364dcdfd46af08b68e4c398989b6b7a6982d0d7a6a968ae931395ef8048378 in /app/

2022-05-12 08:10:09 UTC

/bin/sh -c python3 -m pip install --upgrade pip && pip install -r requirements.txt --use-deprecated=legacy-resolver

2022-05-12 08:10:17 UTC

/bin/sh -c #(nop) WORKDIR /app

2022-05-12 08:10:18 UTC

/bin/sh -c #(nop) COPY dir:8ca2d6c55cb97cf168885f8a06c9a9a26b6f28cd69e803dab5312b7f5b97314a in /app/

2022-05-12 08:10:23 UTC

/bin/sh -c set -ex && DEPS="avahi-daemon libnss-mdns libzstd-dev" && apt-get update && apt-get install -y --no-install-recommends $DEPS && 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

2022-05-12 08:10:24 UTC

/bin/sh -c useradd -u 1001 redisinsight

2022-05-12 08:10:24 UTC

/bin/sh -c #(nop) USER redisinsight

2022-05-12 08:10:24 UTC

/bin/sh -c #(nop) ENV APP_PLATFORM=docker

2022-05-12 08:10:24 UTC

/bin/sh -c #(nop) EXPOSE 8001

2022-05-12 08:10:24 UTC

/bin/sh -c #(nop) ENTRYPOINT ["bash" "./docker-entry.sh"]

2022-05-12 08:10:24 UTC

/bin/sh -c #(nop) CMD ["python" "entry.pyc"]

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