Namespace
demisto
Image / Tag
python3:3.9.2.18414
Content Digest
sha256:63f2fbc79a2256c47ed71e9b85c526b29b4cb6402403474b4725c7cf2f4e0719
Details
Created

2021-04-06 20:08:35 UTC

Size

23.5 MB

Content Digest
Labels
  • org.opencontainers.image.authors
    Demisto <containers@demisto.com>
  • org.opencontainers.image.revision
    911a921473993f01342dd50f3e710864d6e7355a
  • org.opencontainers.image.version
    3.9.2.18414

Environment
DOCKER_IMAGE

demisto/python3:3.9.2.18414

GPG_KEY

E3FF2839C048B25C084DEBE9B26995E310250568

LANG

C.UTF-8

PATH

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

PYTHON_GET_PIP_SHA256

c3b81e5d06371e135fb3156dc7d8fd6270735088428c4a9a5ec1f342e2024565

PYTHON_GET_PIP_URL

https://github.com/pypa/get-pip/raw/b60e2320d9e8d02348525bd74e871e466afdf77c/get-pip.py

PYTHON_PIP_VERSION

21.0.1

PYTHON_VERSION

3.9.2


Layers

[#000] sha256:ca3cd42a7c9525f6ce3d64c1a70982613a8235f0cc057ec9244052921853ef15 - 11.41% (2.68 MB)

[#001] sha256:1d917aee477c10b5ea813a6463dd3f433b3f4dc7d85ca28c17912f4ab8f58e4d - 2.66% (641 KB)

[#002] sha256:7bc50e7d1ae37a8a84d4107e5b458752e3825d63d629e97c2e9d5e30b92e928d - 46.31% (10.9 MB)

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

[#004] sha256:3d2c0e52073b216758824f9d38f4ecf60b8d774bcbfe609b0d3e14f3891b4c55 - 8.79% (2.06 MB)

[#005] sha256:5ec5cbd23730af1669e50ebf8cddf68f788808ec3f919edacdab3ec5b9fbc2f2 - 0.67% (161 KB)

[#006] sha256:113e77de3b6a266eee45baf690b6591b892885253a4bc6bfc6f6f68869d67e8f - 0.0% (303 Bytes)

[#007] sha256:06ce929c1c6236aace0b6c7d1d4a25a5baba195c5b28af5af043a54601a03ee1 - 0.0% (178 Bytes)

[#008] sha256:7a699262be56885250b263b305656536fd3cad0943f8133b1b808522187133d4 - 30.15% (7.08 MB)

[#009] sha256:3f1190728d1dc0276a1c6d6eec6740b10accbd3e4ef2dea7bbd16a049eb213e0 - 0.01% (1.25 KB)


History
2021-03-31 20:10:06 UTC

/bin/sh -c #(nop) ADD file:7119167b56ff1228b2fb639c768955ce9db7a999cd947179240b216dfa5ccbb9 in /

2021-03-31 20:10:06 UTC

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

2021-03-31 20:33:00 UTC

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

2021-04-01 08:52:12 UTC

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

2021-04-01 08:52:14 UTC

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

2021-04-01 09:07:15 UTC

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

2021-04-01 09:07:15 UTC

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

2021-04-01 09:14:01 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 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 && 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-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-04-01 09:14:02 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-04-01 09:14:03 UTC

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

2021-04-01 09:14:03 UTC

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

2021-04-01 09:14:03 UTC

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

2021-04-01 09:14:10 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" ; 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-04-01 09:14:11 UTC

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

2021-04-06 20:07:55 UTC

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

2021-04-06 20:07:55 UTC

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

2021-04-06 20:07:55 UTC

/bin/sh -c #(nop) COPY file:4574b84efebaaa131e634c1327f4a3d1ff5639cffb0e7bc601c37ff62b94bb19 in /etc/localtime

2021-04-06 20:08: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

2021-04-06 20:08:35 UTC

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

2021-04-06 20:08:35 UTC

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

2021-04-06 20:08:35 UTC

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

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