2019-10-28 11:03:28 UTC
69.5 MB
0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D
LANGC.UTF-8
PATH/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PYTHON_PIP_VERSION19.0.1
PYTHON_VERSION3.6.8
RDBTOOLS_PLATFORMdocker
REDISINSIGHT_HOME_DIR/db
[#000] sha256:59265c40e257554058624f35856dafd82d135c4ef406de298cb1fee647867381 - 2.77% (1.92 MB)
[#001] sha256:d5cd96ecafdb947be660e34b0f07102f27c0706b7037c2806cb2792ff83c7121 - 0.48% (343 KB)
[#002] sha256:298057c3387dab3260297ff52704749871c2e7ef54d568874723b90b02970851 - 30.67% (21.3 MB)
[#003] sha256:5ba3aa3911db5fc42041ec82e4340a808851c5cf3c5f41583a855ba564b43f33 - 0.0% (226 Bytes)
[#004] sha256:fff9a6d228f583283729502301166293fa7f4b85c768499edd734ec2ff909d27 - 2.8% (1.94 MB)
[#005] sha256:72bcc24c288e354f9618e3b129b64a09b35796ee7bd237395520a90e327d49aa - 0.0% (131 Bytes)
[#006] sha256:9f71d4543f271ba6ee158cfe54f65d9439f009e794030eb6940cfde28f219f6b - 0.0% (649 Bytes)
[#007] sha256:d9820eb16cabdffc4aa9a20e0391b3a4040cc8a9aa7d9bb66b52e2f9ed78ffd9 - 39.17% (27.2 MB)
[#008] sha256:a710d1e122b1f3ad281518e25ea74214d603b2fd54f919331ae29cd742922cc5 - 3.92% (2.73 MB)
[#009] sha256:dae06747b18c32cbd751909fb419d1537e6ce6f7c242c0e1a647de3c721f8336 - 1.38% (979 KB)
[#010] sha256:943e7bbefa8aaa830fa2e42b47070db926bd61d92663f41a1564034d6ae5ce81 - 11.59% (8.05 MB)
[#011] sha256:94bc501c289d5aaf7a0b70d6eaa52d5f724cfc1f6c50c12f73df3a2a531a091a - 0.64% (457 KB)
[#012] sha256:5898b357dfa125ff9e9d6e63257b52f99a4ac1653cff1dfb3a55d45c158fa7df - 6.15% (4.27 MB)
[#013] sha256:46d5a9055fa27eda2a333b876d5cb4cf05a5ad4de6df377a43f3f6d9c54c12cc - 0.43% (307 KB)
[#014] sha256:85e36f7e79cf935b4d6cfd0cb963e04a345747d2c765f23da9d7bea8e6737737 - 0.0% (2.92 KB)
/bin/sh -c #(nop) ADD file:56d0d690c1d6b1e5c28a25a71d9e106f85676bdbb5b2d7dc727e52c32b52a692 in /
2019-01-30 22:19:35 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2019-01-30 23:56:20 UTC/bin/sh -c #(nop) ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2019-01-30 23:56:21 UTC/bin/sh -c #(nop) ENV LANG=C.UTF-8
2019-01-30 23:56:22 UTC/bin/sh -c apk add --no-cache ca-certificates
2019-01-30 23:56:22 UTC/bin/sh -c #(nop) ENV GPG_KEY=0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D
2019-01-30 23:56:22 UTC/bin/sh -c #(nop) ENV PYTHON_VERSION=3.6.8
2019-01-30 23:59:14 UTC/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps gnupg libressl 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 libressl libressl-dev linux-headers make ncurses-dev pax-utils readline-dev sqlite-dev tcl-dev tk tk-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-shared --with-system-expat --with-system-ffi --without-ensurepip && make -j "$(nproc)" EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000" && 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-01-30 23:59:15 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-01-30 23:59:15 UTC/bin/sh -c #(nop) ENV PYTHON_PIP_VERSION=19.0.1
2019-01-30 23:59:21 UTC/bin/sh -c set -ex; apk add --no-cache --virtual .fetch-deps libressl; trap 'apk del .fetch-deps' EXIT; wget -O get-pip.py 'https://bootstrap.pypa.io/get-pip.py'; 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-01-30 23:59:21 UTC/bin/sh -c #(nop) CMD ["python3"]
2019-10-28 11:01:48 UTC/bin/sh -c #(nop) ENV REDISINSIGHT_HOME_DIR=/db
2019-10-28 11:01:48 UTC/bin/sh -c #(nop) ENV RDBTOOLS_PLATFORM=docker
2019-10-28 11:01:48 UTC/bin/sh -c #(nop) WORKDIR /rdbtools
2019-10-28 11:01:48 UTC/bin/sh -c #(nop) COPY file:b7486a4bcbe9f1864c2ec9bf158ed253fa39b4890764c52cc7841d50535d9966 in ./
2019-10-28 11:03:10 UTC/bin/sh -c set -ex && apk add --no-cache --virtual .build-deps gcc make musl-dev libc-dev linux-headers pcre-dev openssl-dev libffi-dev && pip install --no-use-pep517 --no-cache-dir -r requirements.txt && apk del .build-deps && apk add --no-cache curl openssl
2019-10-28 11:03:11 UTC/bin/sh -c #(nop) COPY dir:dbfca4ece164be8f0a60092bdbb93144a2d3f5872bf2deadd45cec109797eec8 in ./rdbtools/native/
2019-10-28 11:03:21 UTC/bin/sh -c set -ex && apk add --no-cache --virtual .build-deps gcc make musl-dev && cd rdbtools/native && make && mv librdb-linux64.so ../../ && apk del .build-deps
2019-10-28 11:03:22 UTC/bin/sh -c #(nop) COPY dir:e500b11be28aab07d04836e21cf83901fc01df91f737f4ef6fcee842a0c14e72 in ./
2019-10-28 11:03:23 UTC/bin/sh -c mv ./librdb-linux64.so ./rdbtools/core/librdb/ && rm -rf ./rdbtools/native
2019-10-28 11:03:26 UTC/bin/sh -c python manage.py collectstatic --noinput
2019-10-28 11:03:27 UTC/bin/sh -c python -m compileall -b .
2019-10-28 11:03:28 UTC/bin/sh -c find . -type f -name '*.py' -not -path "*/migrations/*" -delete
2019-10-28 11:03:28 UTC/bin/sh -c #(nop) ENTRYPOINT ["python" "startup.pyc"]
2019-10-28 11:03:28 UTC/bin/sh -c #(nop) EXPOSE 8001
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.