Namespace
kiwigrid
Image / Tag
k8s-sidecar:0.1.2
Content Digest
sha256:bca1da0f1d37d6b9dce185d40a5e9b41b54e5e698cd7d3eea3a722eba293c22b
Details
Created

2019-08-02 12:51:14 UTC

Size

72.7 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

56bb63d3cf54e7444351256f72a60f575f6d8c7f1faacffae33167afc8e7609d

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

19.2.1

PYTHON_VERSION

3.7.4


Layers

[#000] sha256:f5d23c7fed465a9eb762fc4c3cccd551a05914aba42492ceb972497db4df38bf - 35.55% (25.8 MB)

[#001] sha256:bac1b0ed365c8c642c9f55296727514c2de488b36dc63a8bc4724a2d3f64ff42 - 3.61% (2.62 MB)

[#002] sha256:0699bcf8d8732344e745409c4e87ecfd638801af43cdc116b052672a5e37744c - 36.78% (26.7 MB)

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

[#004] sha256:dcec04ff7bdf247c282682a8c87403a11ca869070deaa5c6eaa44892cd50c47b - 2.82% (2.05 MB)

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

[#006] sha256:2712bf436abf9d57e91cad6b454f223169ea5cff7871c4d18ef9b8cb9db7c075 - 0.0% (171 Bytes)

[#007] sha256:c04b5f873f237ba6d59eeaa8028d6c5096c3149c21d9b6cb78f3e87bbc4db1a4 - 21.24% (15.4 MB)

[#008] sha256:dd4ed588fc4728e1ef22b3d59c24b4a52b0a2fc822985aa3329308c1c8923a64 - 0.0% (2.74 KB)


History
2019-07-09 21:22:33 UTC

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

2019-07-09 21:22:33 UTC

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

2019-07-10 02:54:57 UTC

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

2019-07-10 02:54:57 UTC

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

2019-07-10 02:55:10 UTC

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

2019-07-13 14:05:49 UTC

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

2019-07-13 14:05:49 UTC

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

2019-07-13 14:14:25 UTC

/bin/sh -c set -ex && savedAptMark="$(apt-mark showmanual)" && apt-get update && apt-get install -y --no-install-recommends dpkg-dev gcc 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-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 \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' + && rm -rf /usr/src/python && python3 --version

2019-07-13 14:14:26 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-07-30 00:33:49 UTC

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

2019-07-30 00:33:49 UTC

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

2019-07-30 00:33:50 UTC

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

2019-07-30 00:34:03 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 \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' +; rm -f get-pip.py

2019-07-30 00:34:03 UTC

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

2019-08-02 12:51:02 UTC

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

2019-08-02 12:51:02 UTC

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

2019-08-02 12:51:13 UTC

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

2019-08-02 12:51:14 UTC

/bin/sh -c #(nop) COPY multi:2502ae2b693d20f170ed1796e036accb4169ff33f8c63d1e2d7031c6cab8e33e in ./

2019-08-02 12:51:14 UTC

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

2019-08-02 12:51:14 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