Namespace
demisto
Image / Tag
python3:3.10.9.42008
Content Digest
sha256:1651ec5d050706b650ea14388d907535bf17f01b76acf05bf837dc8d7812a227
Details
Created

2022-12-27 19:16:10 UTC

Size

28.8 MB

Content Digest
Labels
  • org.opencontainers.image.authors
    Demisto <containers@demisto.com>
  • org.opencontainers.image.revision
    b9e1f7df44ad96f9b7636477de1ac27f61f4eba0
  • org.opencontainers.image.version
    3.10.9.42008

Environment
DOCKER_IMAGE

demisto/python3:3.10.9.42008

GPG_KEY

A035C8C19219BA821ECEA86B64E628F8D684696D

LANG

C.UTF-8

PATH

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

PYTHON_GET_PIP_SHA256

1e501cf004eac1b7eb1f97266d28f995ae835d30250bec7f8850562703067dc6

PYTHON_GET_PIP_URL

https://github.com/pypa/get-pip/raw/66030fa03382b4914d4c4d0896961a0bdeeeb274/public/get-pip.py

PYTHON_PIP_VERSION

22.3.1

PYTHON_SETUPTOOLS_VERSION

65.5.0

PYTHON_VERSION

3.10.9


Layers

[#000] sha256:c158987b05517b6f2c5913f3acef1f2182a32345a304fe357e3ace5fadcad715 - 11.14% (3.21 MB)

[#001] sha256:7ec3a91b66d9050989fca52618b7d400610c8c2cf9a8bbcb86bc403e0e01f220 - 2.06% (608 KB)

[#002] sha256:a004f9671752526bc6181828d2550b1240bbb1aa61b4e868a88e62ebe8e50115 - 41.01% (11.8 MB)

[#003] sha256:f410860292299fd71618c85d462c536cbb2b40c1278dfbfc9faa45c1467b1739 - 0.0% (231 Bytes)

[#004] sha256:a8dbc4976a6ccbd2c483a049940438a778a0cfef17d58ae74b8bb90e89554b25 - 10.11% (2.91 MB)

[#005] sha256:03f00a9c58786141b7f06b826ad797dee41053b42f247c18548c22bcf31cb520 - 1.01% (300 KB)

[#006] sha256:7e1d48710475bffb30e6fa24d4a43ad8151e73e964654c61791d133ed8672f57 - 0.0% (332 Bytes)

[#007] sha256:c85a8bbff210bb5fbc69df2b493d58ace9744e8d68bd155c2a4b294dd8335ef4 - 0.0% (176 Bytes)

[#008] sha256:11a2f5683ebca2bea0604493f5bec5155b7a72bfdd93d737f35ab8226c70010e - 34.65% (9.99 MB)

[#009] sha256:34c53e0280a8f62c83bd016ac963fdd4fb30c6f28b89b8f25acf7eff1f9cef34 - 0.0% (1.24 KB)

[#010] sha256:52aabbb0dfe0f10588297b414e4ee5a2a89dc76a6da0302437dbf59c96140389 - 0.02% (4.76 KB)


History
2022-11-22 22:19:28 UTC

/bin/sh -c #(nop) ADD file:587cae71969871d3c6456d844a8795df9b64b12c710c275295a1182b46f630e7 in /

2022-11-22 22:19:29 UTC

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

2022-11-29 20:42:01 UTC

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

2022-11-29 20:42:01 UTC

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

2022-11-29 20:42:02 UTC

/bin/sh -c set -eux; apk add --no-cache ca-certificates tzdata ;

2022-11-29 20:57:37 UTC

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

2022-12-08 02:11:18 UTC

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

2022-12-08 02:21:45 UTC

/bin/sh -c set -eux; apk add --no-cache --virtual .build-deps gnupg tar xz bluez-dev bzip2-dev dpkg-dev dpkg expat-dev findutils gcc gdbm-dev libc-dev libffi-dev libnsl-dev libtirpc-dev linux-headers make ncurses-dev openssl-dev pax-utils readline-dev sqlite-dev tcl-dev tk tk-dev util-linux-dev xz-dev zlib-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" EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000" 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 '{}' + ; find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec scanelf --needed --nobanner --format '%n#p' '{}' ';' | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | xargs -rt apk add --no-network --virtual .python-rundeps ; apk del --no-network .build-deps; python3 --version

2022-12-08 02:21:46 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-12-08 02:21:46 UTC

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

2022-12-08 02:21:46 UTC

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

2022-12-08 02:21:46 UTC

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

2022-12-08 02:21:47 UTC

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

2022-12-08 02:21:54 UTC

/bin/sh -c set -eux; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; 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-12-08 02:21:54 UTC

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

2022-12-27 19:15:55 UTC

/bin/sh -c apk --update --no-cache upgrade

2022-12-27 19:15:55 UTC

/bin/sh -c #(nop) COPY file:f1e66c7633b7500b00bdbc69c49ba4a3c0539a409f36e64fde8d21fbc97bd2cd in .

2022-12-27 19:15:55 UTC

/bin/sh -c #(nop) COPY file:12726c79ad1c95cb3dd18a9f0220bdf85054074a88d334f43cfea36d2ec61a86 in /etc/localtime

2022-12-27 19:16:08 UTC

/bin/sh -c apk --update add --no-cache --virtual .build-dependencies python3-dev build-base wget && pip install --no-cache-dir -r requirements.txt && apk del .build-dependencies

2022-12-27 19:16:09 UTC

/bin/sh -c addgroup -g 4000 demisto && adduser -u 4000 -G demisto -D demisto -s /bin/sh

2022-12-27 19:16:09 UTC

/bin/sh -c cp /etc/ssl/openssl.cnf /etc/ssl/openssl.cnf.org && echo -e 'ssl_conf = ssl_sect\n[ssl_sect]\nsystem_default = system_default_sect\n\n[system_default_sect]\nOptions = UnsafeLegacyRenegotiation\n' > /tmp/ssl.cnf && sed -i '/providers = provider_sect/r /tmp/ssl.cnf' /etc/ssl/openssl.cnf && rm /tmp/ssl.cnf && grep -C 10 'Options = UnsafeLegacyRenegotiation' /etc/ssl/openssl.cnf

2022-12-27 19:16:10 UTC

/bin/sh -c #(nop) ENV DOCKER_IMAGE=demisto/python3:3.10.9.42008

2022-12-27 19:16:10 UTC

/bin/sh -c #(nop) LABEL org.opencontainers.image.authors=Demisto <containers@demisto.com>

2022-12-27 19:16:10 UTC

/bin/sh -c #(nop) LABEL org.opencontainers.image.revision=b9e1f7df44ad96f9b7636477de1ac27f61f4eba0

2022-12-27 19:16:10 UTC

/bin/sh -c #(nop) LABEL org.opencontainers.image.version=3.10.9.42008

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