Namespace
zmister
Image / Tag
mrdoc:v3
Content Digest
sha256:fd932cd836a43230b94e63b538b5bb6c2b71847b8171b9c3156fe20fc5b4d3fd
Details
Created

2022-05-16 08:35:08 UTC

Size

500 MB

Content Digest
Labels
  • maintainer
    mrdoc.pro

Environment
GPG_KEY

0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D

LANG

C.UTF-8

LISTEN_PORT

10086

PATH

/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PYTHONUNBUFFERED

0

PYTHON_GET_PIP_SHA256

e235c437e5c7d7524fbce3880ca39b917a73dc565e0c813465b7a7a329bb279a

PYTHON_GET_PIP_URL

https://github.com/pypa/get-pip/raw/38e54e5de07c66e875c11a1ebbdb938854625dd8/public/get-pip.py

PYTHON_PIP_VERSION

22.0.4

PYTHON_SETUPTOOLS_VERSION

57.5.0

PYTHON_VERSION

3.7.13

TZ

Asia/Shanghai

USER

admin


Layers

[#000] sha256:8663204ce13b2961da55026a2034abb9e5afaaccf6a9cfb44ad71406dcd07c7b - 0.54% (2.69 MB)

[#001] sha256:e6202aa870befe19a5b6da7484e3ac1b39b0762008cbc7ed14e11815e9ac4668 - 0.13% (651 KB)

[#002] sha256:b6e2b8b255329283ae7773d3d36e9cb5af19adee94baa30a29f66f2fd7baa657 - 2.14% (10.7 MB)

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

[#004] sha256:23da2f7ff846cc92a120ebdc3ec833c6bf59b69e9d20de9e713ca484f11b8184 - 0.55% (2.74 MB)

[#005] sha256:30fc4aaaa1f94cd36cc2356f51c26b877d2c207c3c60e606da3511d81b23bcbe - 0.0% (14.8 KB)

[#006] sha256:32929af9d3ec363e094478e268046551258a642cb443293a209a31c5e5f0bf96 - 0.0% (203 Bytes)

[#007] sha256:3f5f5cf33c8e486b50c2899f3aa969e58e990d153d41378bbf3dbc30f683e332 - 96.64% (483 MB)


History
2022-04-05 00:20:08 UTC

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

2022-04-05 00:20:08 UTC

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

2022-04-05 06:01:12 UTC

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

2022-04-05 08:10:25 UTC

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

2022-04-05 08:10:26 UTC

/bin/sh -c set -eux; apk add --no-cache ca-certificates tzdata ;

2022-04-05 09:29:20 UTC

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

2022-04-05 09:29:20 UTC

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

2022-04-20 03:18:22 UTC

/bin/sh -c set -eux; apk add --no-cache --virtual .build-deps gnupg tar xz bluez-dev bzip2-dev 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 ; 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"; GNUPGHOME="$(mktemp -d)"; export GNUPGHOME; 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 --extract --directory /usr/src/python --strip-components=1 --file 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-option-checking=fatal --enable-shared --with-system-expat --without-ensurepip ; nproc="$(nproc)"; 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; cd /; 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 'libpython*.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-network --virtual .python-rundeps ; apk del --no-network .build-deps; python3 --version

2022-04-20 03:18:22 UTC

/bin/sh -c set -eux; for src in idle3 pydoc3 python3 python3-config; do dst="$(echo "$src" | tr -d 3)"; [ -s "/usr/local/bin/$src" ]; [ ! -e "/usr/local/bin/$dst" ]; ln -svT "$src" "/usr/local/bin/$dst"; done

2022-04-20 03:18:22 UTC

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

2022-04-20 03:18:22 UTC

/bin/sh -c #(nop) ENV PYTHON_SETUPTOOLS_VERSION=57.5.0

2022-04-20 03:18:22 UTC

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

2022-04-20 03:18:23 UTC

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

2022-04-20 03:18:29 UTC

/bin/sh -c set -eux; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; export PYTHONDONTWRITEBYTECODE=1; python get-pip.py --disable-pip-version-check --no-cache-dir --no-compile "pip==$PYTHON_PIP_VERSION" "setuptools==$PYTHON_SETUPTOOLS_VERSION" ; rm -f get-pip.py; pip --version

2022-04-20 03:18:29 UTC

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

2022-05-16 08:27:20 UTC

/bin/sh -c #(nop) LABEL maintainer=mrdoc.pro

2022-05-16 08:27:20 UTC

/bin/sh -c #(nop) ENV PYTHONUNBUFFERED=0 TZ=Asia/Shanghai LISTEN_PORT=10086 USER=admin

2022-05-16 08:27:21 UTC

/bin/sh -c #(nop) COPY dir:c34c701065cb5aa8b44aab70f9cfea2b97d46e7ab6b8630b80be204080158c77 in /app/MrDoc/

2022-05-16 08:27:21 UTC

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

2022-05-16 08:27:22 UTC

/bin/sh -c sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories

2022-05-16 08:35:05 UTC

/bin/sh -c set -x && apk add --no-cache --virtual .build-deps build-base g++ gcc libxslt-dev py3-lxml openldap-dev python2-dev linux-headers && apk add --no-cache git tzdata zlib-dev freetype-dev jpeg-dev mariadb-dev postgresql-dev chromium chromium-chromedriver && apk add --no-cache libreoffice libreoffice-base libreoffice-lang-zh_cn && apk add wqy-zenhei --update-cache --repository https://mirrors.aliyun.com/alpine/edge/testing && python -m pip install --upgrade pip -i https://pypi.tuna.tsinghua.edu.cn/simple && pip --no-cache-dir install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple && pip --no-cache-dir install uwsgi -i https://pypi.tuna.tsinghua.edu.cn/simple && chmod +x docker_mrdoc.sh && apk del .build-deps && rm -rf /var/cache/apk/*

2022-05-16 08:35:08 UTC

/bin/sh -c #(nop) ENTRYPOINT ["sh" "docker_mrdoc.sh"]

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