2021-04-09 00:49:19 UTC
150 MB
0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D
LANGC.UTF-8
PATH/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PYTHON_GET_PIP_SHA256e03eb8a33d3b441ff484c56a436ff10680479d4bd14e59268e67977ed40904de
PYTHON_GET_PIP_URLhttps://github.com/pypa/get-pip/raw/29f37dbe6b3842ccd52d61816a3044173962ebeb/public/get-pip.py
PYTHON_PIP_VERSION21.0.1
PYTHON_VERSION3.7.10
[#000] sha256:ca3cd42a7c9525f6ce3d64c1a70982613a8235f0cc057ec9244052921853ef15 - 1.79% (2.68 MB)
[#001] sha256:bc9e52c7d1775ed8403a37980c82a67eb4cbf3b69a36b63aee4deb1933b6772b - 0.18% (275 KB)
[#002] sha256:9142ed5c3e0f662fd5cc69d22c56d80522032b5caaebeb24724798f480bb2659 - 6.73% (10.1 MB)
[#003] sha256:22093cf31f759de4033781aaa493101f5884a3ad10a4caaee4aae413302748ca - 0.0% (234 Bytes)
[#004] sha256:4cdb1fe21e97b3a6e3bc365639744232cb34d519c68f30f8326cc533f5aece1c - 1.38% (2.06 MB)
[#005] sha256:1b14894c9d39746131bf1a80d144e01e0050e061209a2912e1b4dac9b40628a1 - 18.56% (27.8 MB)
[#006] sha256:593623dee34715fcb3fdc80666151b5a44012ada5afea97ace31475bd0259660 - 13.79% (20.6 MB)
[#007] sha256:3a29380bc625d6aea9e97860bbc4e3b5cec4c231729cdb33013640b49ac60e42 - 8.96% (13.4 MB)
[#008] sha256:fbb5f8eae73ffe24a93f70c3df309a22730803fb8e06b1ace1d5935a20affea6 - 48.62% (72.8 MB)
/bin/sh -c #(nop) ADD file:7119167b56ff1228b2fb639c768955ce9db7a999cd947179240b216dfa5ccbb9 in /
2021-03-31 20:10:06 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-03-31 20:33:00 UTC/bin/sh -c #(nop) ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2021-04-01 08:52:12 UTC/bin/sh -c #(nop) ENV LANG=C.UTF-8
2021-04-01 09:21:18 UTC/bin/sh -c set -eux; apk add --no-cache ca-certificates ;
2021-04-01 09:34:25 UTC/bin/sh -c #(nop) ENV GPG_KEY=0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D
2021-04-01 09:34:25 UTC/bin/sh -c #(nop) ENV PYTHON_VERSION=3.7.10
2021-04-02 22:53:52 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 hkps://keys.openpgp.org --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" LDFLAGS="-Wl,--strip-all" 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 && rm -rf /usr/src/python && 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' -o -name '*.a' \) \) -o \( -type f -a -name 'wininst-*.exe' \) \) -exec rm -rf '{}' + && 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 && python3 --version
2021-04-02 22:53:53 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
2021-04-02 22:53:53 UTC/bin/sh -c #(nop) ENV PYTHON_PIP_VERSION=21.0.1
2021-04-02 22:53:53 UTC/bin/sh -c #(nop) ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/29f37dbe6b3842ccd52d61816a3044173962ebeb/public/get-pip.py
2021-04-02 22:53:54 UTC/bin/sh -c #(nop) ENV PYTHON_GET_PIP_SHA256=e03eb8a33d3b441ff484c56a436ff10680479d4bd14e59268e67977ed40904de
2021-04-02 22:54:00 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
2021-04-02 22:54:00 UTC/bin/sh -c #(nop) CMD ["python3"]
2021-04-09 00:35:21 UTC/bin/sh -c #(nop) MAINTAINER Nikolai R Kristiansen <nikolaik@gmail.com>
2021-04-09 00:35:31 UTC/bin/sh -c apk add --no-cache libstdc++ && pip install -U pip && pip install pipenv
2021-04-09 00:48:56 UTC/bin/sh -c #(nop) COPY dir:016e10c4b4e2792fef68f836174fc1d793001688c85c669a91ce07136025a295 in /usr/local
2021-04-09 00:49:09 UTC/bin/sh -c mv /usr/local/lib/node_modules /usr/local/lib/node_modules.tmp && mv /usr/local/lib/node_modules.tmp /usr/local/lib/node_modules && npm i -g npm@^6 yarn
2021-04-09 00:49:19 UTC/bin/sh -c wget -q -O - https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python && ln -s /root/.poetry/bin/poetry /usr/local/bin
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.