Namespace
kiwigrid
Image / Tag
k8s-sidecar:0.1.110
Content Digest
sha256:d6e7a221ba53a31cd0f038d278b310a8b1325f48a530633543564eecf592bc53
Details
Created

2020-02-26 15:21:55 UTC

Size

41.5 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

421ac1d44c0cf9730a088e337867d974b91bdce4ea2636099275071878cc189e

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

20.0.2

PYTHON_VERSION

3.7.6


Layers

[#000] sha256:c9b1b535fdd91a9855fb7f82348177e5f019329a58c53c47272962dd60f71fc9 - 6.44% (2.67 MB)

[#001] sha256:2cc5ad85d9abaadf23d5ae53c3f32e7ccb2df1956869980bfd2491ff396d348a - 0.69% (294 KB)

[#002] sha256:53a2fca3c2ea7aa6237addb6763b98a5dfdc15c3a0f33222f9b206d5acac0b91 - 65.95% (27.4 MB)

[#003] sha256:30fce49de8b1e8a52f778591ddbf56241326e2d3f3aea9afa3f2d28939ed1fbd - 0.0% (230 Bytes)

[#004] sha256:ca406aaf66e09244c9cabb69523721a85751dac98c452dea02390395c5a212df - 4.35% (1.8 MB)

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

[#006] sha256:b0e54a6d3d0b0fa4a2f0c747851cbd9796286f804985099c69f5d723580964eb - 0.0% (174 Bytes)

[#007] sha256:4c3c90d3fea0a7addd3be1943a512e0dd808fe1dcf40e40c92609c17e74a3c98 - 22.55% (9.36 MB)

[#008] sha256:e76f69c7a7662e762ac3727b9544f6bd27012b9f9e7b1a96fc878c32c20088a6 - 0.01% (3.25 KB)


History
2020-01-18 01:19:37 UTC

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

2020-01-18 01:19:37 UTC

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

2020-01-18 01:42:30 UTC

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

2020-01-18 02:37:13 UTC

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

2020-01-18 02:37:14 UTC

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

2020-01-18 02:43:48 UTC

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

2020-01-18 02:43:48 UTC

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

2020-01-18 02:51: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 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" 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 --no-network .build-deps && 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-01-18 02:51: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

2020-01-25 02:51:16 UTC

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

2020-02-06 01:38:21 UTC

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

2020-02-06 01:38:21 UTC

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

2020-02-06 01:38:28 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

2020-02-06 01:38:28 UTC

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

2020-02-26 15:21:42 UTC

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

2020-02-26 15:21:42 UTC

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

2020-02-26 15:21:42 UTC

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

2020-02-26 15:21:54 UTC

/bin/sh -c apk add --no-cache gcc && pip install -r requirements.txt && apk del -r gcc && rm -rf /var/cache/apk/* requirements.txt

2020-02-26 15:21:54 UTC

/bin/sh -c #(nop) COPY multi:7877be4d87e12e8301cf02e9e1b1f9408972d309aa9171f91c88f55a1ff3b33a in ./

2020-02-26 15:21:54 UTC

/bin/sh -c #(nop) USER [nobody]

2020-02-26 15:21:55 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