Namespace
demisto
Image / Tag
python3:3.7.4.2728
Content Digest
sha256:e093f581ce33c3a2612fc29f609fea8fa2ad6824e00fee7ece0e37041e9a268c
Details
Created

2019-10-16 22:24:21 UTC

Size

39.6 MB

Content Digest
Labels
  • org.opencontainers.image.authors
    Demisto <containers@demisto.com>
  • org.opencontainers.image.revision
    0f2393239c4ed5155b41e0d26337f39ce05ee1f4
  • org.opencontainers.image.version
    3.7.4.2728

Environment
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

8d412752ae26b46a39a201ec618ef9ef7656c5b2d8529cdcbe60cd70dc94f40c

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

19.3

PYTHON_VERSION

3.7.4


Layers

[#000] sha256:9d48c3bd43c520dc2784e868a780e976b207cbf493eaff8c6596eb871cbd9609 - 6.72% (2.66 MB)

[#001] sha256:c0ea575d71b95849badbbe7028b2860a80414fc494a07bb439a0d202b5e77e51 - 0.73% (295 KB)

[#002] sha256:0f535eceebd59caf21911ae128f64d52438947bdc1b89f7657fe7a8b11dbc807 - 69.6% (27.5 MB)

[#003] sha256:8a30f5893bea6db26a6a113939720e3ebd4969274ae27b42b5c1d945347a551b - 0.0% (228 Bytes)

[#004] sha256:287089fe229eaa663beb78e5458cb013b6e8bbd04175e1a4a1ed2ce130a8b07e - 4.5% (1.78 MB)

[#005] sha256:dbd7e71d8f25809a1d457860585e044849a8724e18a962328b0e93bc9dbad70d - 5.39% (2.13 MB)

[#006] sha256:28e1f2b387c4ff6d9f0c080426f1a4bfe49636c068dcc843d040ca997d35d126 - 0.0% (280 Bytes)

[#007] sha256:fcd53bc2836f9032aaf8f296dfb588e601cfe5235cf6eab6202e35f068e0e91d - 13.05% (5.17 MB)

[#008] sha256:f2565b5ce00acbbfa230781585d8842cc379879f7fcf3412eaf973aa21e4e51a - 0.0% (1.23 KB)


History
2019-08-20 20:19:55 UTC

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

2019-08-20 20:19:55 UTC

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

2019-08-20 21:29:22 UTC

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

2019-08-21 00:06:14 UTC

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

2019-08-21 00:06:15 UTC

/bin/sh -c apk add --no-cache ca-certificates

2019-08-21 00:13:42 UTC

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

2019-08-21 00:13:42 UTC

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

2019-08-21 00:21:40 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 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 .fetch-deps && cd /usr/src/python && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && ./configure --build="$gnuArch" --enable-loadable-sqlite-extensions --enable-optimizations --enable-shared --with-system-expat --with-system-ffi --without-ensurepip && make -j "$(nproc)" EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000" 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 && 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 .build-deps && find /usr/local -depth \( \( -type d -a \( -name test -o -name tests \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' + && rm -rf /usr/src/python && python3 --version

2019-08-21 00:21:41 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

2019-10-15 23:16:41 UTC

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

2019-10-15 23:16:42 UTC

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

2019-10-15 23:16:42 UTC

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

2019-10-15 23:16:48 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 \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' +; rm -f get-pip.py

2019-10-15 23:16:49 UTC

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

2019-10-16 22:23:53 UTC

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

2019-10-16 22:23:53 UTC

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

2019-10-16 22:24:20 UTC

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

2019-10-16 22:24:21 UTC

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

2019-10-16 22:24:21 UTC

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

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