Namespace
kiwigrid
Image / Tag
k8s-sidecar:0.1.63
Content Digest
sha256:9be25c8a7039c829c2959ddafc96a3a95cfc917af432d01689a3e0e64d904166
Details
Created

2020-02-03 08:56:53 UTC

Size

66.6 MB

Content Digest
Environment
GPG_KEY

0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D

LANG

C.UTF-8

PATH

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

PYTHONUNBUFFERED

1

PYTHON_GET_PIP_SHA256

da288fc002d0bb2b90f6fbabc91048c1fa18d567ad067ee713c6e331d3a32b45

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

20.0.2

PYTHON_VERSION

3.7.6


Layers

[#000] sha256:bc51dd8edc1b1132bb97827ed6bd16aac332b03fb03d4c02d2088067a5fbb499 - 38.81% (25.8 MB)

[#001] sha256:dc4aa7361f66f76f49554b497c9576edb1f125bbe8fd08a88c898ad35a37b402 - 3.94% (2.62 MB)

[#002] sha256:5f346cb9ea74109ccfd35117a3579bf4e9fee59d6d448b4c0fe399b02b440c8c - 40.18% (26.8 MB)

[#003] sha256:a4f1efa8e0e8dae08ba1cf828484adbecf554a402dcc87c0e73fdc2bb35ab93f - 0.0% (232 Bytes)

[#004] sha256:7a2002b588072d3497521e006a7f22420895ca0811c6b711f167c8fcf74268e5 - 3.12% (2.08 MB)

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

[#006] sha256:a3df8360984a9898caea968a3953f8643e45a13ecfe506815a72470e5cbe9d02 - 0.0% (173 Bytes)

[#007] sha256:fadfc1e5d3433290d8fdff324dc4a1f4e7de82e89d1c64c4b7f3205e29609b7c - 13.94% (9.28 MB)

[#008] sha256:d15b4363d9a7d00d1b1993d0fcb1f7a67506043f4b4a7dac74836f45a9c17a15 - 0.0% (2.86 KB)


History
2020-02-01 17:20:54 UTC

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

2020-02-01 17:20:54 UTC

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

2020-02-02 08:39:29 UTC

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

2020-02-02 08:39:29 UTC

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

2020-02-02 08:39:40 UTC

/bin/sh -c apt-get update && apt-get install -y --no-install-recommends ca-certificates netbase && rm -rf /var/lib/apt/lists/*

2020-02-02 09:02:39 UTC

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

2020-02-02 09:02:39 UTC

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

2020-02-02 09:13:31 UTC

/bin/sh -c set -ex && savedAptMark="$(apt-mark showmanual)" && apt-get update && apt-get install -y --no-install-recommends dpkg-dev gcc 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 $(command -v gpg > /dev/null || echo 'gnupg dirmngr') && 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 && 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)" 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 && 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/* && 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 -rf /usr/src/python && python3 --version

2020-02-02 09:13:32 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

2020-02-02 09:13:33 UTC

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

2020-02-02 09:13:33 UTC

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

2020-02-02 09:13:33 UTC

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

2020-02-02 09:13:53 UTC

/bin/sh -c set -ex; 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 --check --strict -; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; 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

2020-02-02 09:13:54 UTC

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

2020-02-03 08:56:43 UTC

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

2020-02-03 08:56:43 UTC

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

2020-02-03 08:56:52 UTC

/bin/sh -c pip install -r requirements.txt

2020-02-03 08:56:52 UTC

/bin/sh -c #(nop) COPY multi:553e4710775daad3a3016bd1b51700b13bd4f33a70c4b39f1b9ff5b28e5bd706 in ./

2020-02-03 08:56:53 UTC

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

2020-02-03 08:56:53 UTC

/bin/sh -c #(nop) CMD ["python" "-u" "/app/sidecar.py"]

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