Namespace
demisto
Image / Tag
python3:3.10.1.25930
Content Digest
sha256:0625bd8f8d3a821095180c2b408a82401dfd276ad98902fbf63feb6c179232d0
Details
Created

2022-01-11 15:20:36 UTC

Size

27.3 MB

Content Digest
Labels
  • org.opencontainers.image.authors
    Demisto <containers@demisto.com>
  • org.opencontainers.image.revision
    78cce2bc0f679e5741a52285da5631e0677d5d90
  • org.opencontainers.image.version
    3.10.1.25930

Environment
DOCKER_IMAGE

demisto/python3:3.10.1.25930

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

c518250e91a70d7b20cceb15272209a4ded2a0c263ae5776f129e0d9b5674309

PYTHON_GET_PIP_URL

https://github.com/pypa/get-pip/raw/3cb8888cc2869620f57d5d2da64da38f516078c7/public/get-pip.py

PYTHON_PIP_VERSION

21.2.4

PYTHON_SETUPTOOLS_VERSION

57.5.0

PYTHON_VERSION

3.10.1


Layers

[#000] sha256:59bf1c3509f33515622619af21ed55bbe26d24913cedbca106468a5fb37a50c3 - 9.85% (2.69 MB)

[#001] sha256:07a400e93df3fcc09e5f874878c049b15515236f55fbf76013c0779a7cc4a301 - 2.37% (662 KB)

[#002] sha256:d8c681bc2183ac2de0b5e117ed74647ee5dfbdbf8a3730ac81c54f3b3db989f7 - 40.85% (11.1 MB)

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

[#004] sha256:dc9256fcea2e541f17f0ed7d4dae23c03fb27a5ab8e7611e34f5a5e4d96d6678 - 8.21% (2.24 MB)

[#005] sha256:89795b76fee7140c25eb620e21e080145910f9f7472e7ffb0e708de45c2488d5 - 5.31% (1.45 MB)

[#006] sha256:c161ef9d0bfda370f18c727f3288f63ff2383416c4e1ec1e0e4468220f078da1 - 0.0% (503 Bytes)

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

[#008] sha256:85f8618c573764152dc3a5695e9a70b65874aec742c9706f4d1323a932847dde - 33.4% (9.11 MB)

[#009] sha256:856a57d5e057b83d0f625701442d3f18d380be10bb34d405cca860a0d10cd0fa - 0.0% (1.26 KB)


History
2021-11-24 20:19:40 UTC

/bin/sh -c #(nop) ADD file:9233f6f2237d79659a9521f7e390df217cec49f1a8aa3a12147bbca1956acdb9 in /

2021-11-24 20:19:40 UTC

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

2021-11-29 20:45:19 UTC

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

2021-11-30 02:41:34 UTC

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

2021-11-30 02:41:36 UTC

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

2021-11-30 02:41:36 UTC

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

2021-12-08 04:18:03 UTC

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

2021-12-08 04:36:39 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps gnupg tar xz && 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 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 -xJC /usr/src/python --strip-components=1 -f python.tar.xz && rm python.tar.xz && apk add --no-cache --virtual .build-deps bluez-dev bzip2-dev coreutils 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 && apk del --no-network .fetch-deps && 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 --with-system-ffi --without-ensurepip && make -j "$(nproc)" EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000" 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' \) \) \) -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-cache --virtual .python-rundeps && apk del --no-network .build-deps && python3 --version

2021-12-08 04:36:40 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

2021-12-08 04:36:41 UTC

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

2021-12-08 04:36:41 UTC

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

2021-12-08 04:36:41 UTC

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

2021-12-08 04:36:41 UTC

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

2021-12-08 04:36:51 UTC

/bin/sh -c set -ex; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; python get-pip.py --disable-pip-version-check --no-cache-dir "pip==$PYTHON_PIP_VERSION" "setuptools==$PYTHON_SETUPTOOLS_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

2021-12-08 04:36:51 UTC

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

2022-01-11 15:20:11 UTC

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

2022-01-11 15:20:12 UTC

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

2022-01-11 15:20:12 UTC

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

2022-01-11 15:20:34 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-01-11 15:20:35 UTC

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

2022-01-11 15:20:35 UTC

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

2022-01-11 15:20:35 UTC

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

2022-01-11 15:20:35 UTC

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

2022-01-11 15:20:36 UTC

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

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