Namespace
kiwigrid
Image / Tag
k8s-sidecar:0.0.13
Content Digest
sha256:8847b855a7a541adfd4459ed33420a69128f8b3d7204639efda099a113d66c1a
Details
Created

2019-03-12 07:47:11 UTC

Size

63.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_PIP_VERSION

19.0.3

PYTHON_VERSION

3.7.2


Layers

[#000] sha256:f7e2b70d04ae3f516c08c24d88de0f82699aaf3ee98af6eb208bd234136142b4 - 33.66% (21.5 MB)

[#001] sha256:43e4f8f1b5979de3b96d63b7ca7d50b61c5dc510d08bb6ddf3bbbda7bd938ee3 - 3.78% (2.41 MB)

[#002] sha256:80ad23bc7fa96488e6d5fde974c035cab2bbbcd0ae66766ef6d619b2b2da27ca - 35.67% (22.7 MB)

[#003] sha256:a57e86a44060744f1a30c8e6f36d6cc2047574220bfbe069c602bf7556209f6b - 0.0% (240 Bytes)

[#004] sha256:ed90be468a25cb4cbea54b9e3b420cdbec383664f20cc8502fbc32aa513337fc - 3.14% (2 MB)

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

[#006] sha256:c6635753bc9d48bc70721edf81b8c68391ce2bbb3c291de1228df08482052ea6 - 23.75% (15.1 MB)

[#007] sha256:af21311e510b7d2c7721218a4c7095fbb49e5c8ca4d933c100e9e885e7949c76 - 0.0% (1.96 KB)


History
2019-03-04 23:22:21 UTC

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

2019-03-04 23:22:22 UTC

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

2019-03-04 23:28:02 UTC

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

2019-03-04 23:28:02 UTC

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

2019-03-04 23:28: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-03-04 23:32:38 UTC

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

2019-03-04 23:32:38 UTC

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

2019-03-04 23:36:37 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-shared --with-system-expat --with-system-ffi --without-ensurepip && make -j "$(nproc)" && 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-03-04 23:36:38 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-03-04 23:36:38 UTC

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

2019-03-04 23:36:59 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 'https://bootstrap.pypa.io/get-pip.py'; 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-03-04 23:37:00 UTC

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

2019-03-12 07:46:24 UTC

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

2019-03-12 07:47:10 UTC

/bin/sh -c pip install kubernetes==8.0.1

2019-03-12 07:47:10 UTC

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

2019-03-12 07:47:11 UTC

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

2019-03-12 07:47:11 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