Namespace
zmister
Image / Tag
mrdoc:v6
Content Digest
sha256:e8e48413d7ab94b3a08ff8b29b324e101669274d36842e99dbe350e750b3c473
Details
Created

2023-08-09 11:04:23 UTC

Size

512 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

530e7077f9e31f0378b5ee7cc90c8d99b7aef832f3d4ea96b42c2072e322734e

PYTHON_GET_PIP_URL

https://github.com/pypa/get-pip/raw/2d26a16e351a22108b46fa11507aa57a732d4074/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.53% (2.69 MB)

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

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

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

[#004] sha256:99ace1ef12ae445bb03dbbffa665d9b77e0c9ef487aeb070ef0cba7c1a17cb65 - 0.54% (2.74 MB)

[#005] sha256:79843b7a47f2ed7d0cd8397afd9ceb7610b8aecd5e0e5688b81dc737643163b1 - 0.0% (16.8 KB)

[#006] sha256:6f79c4c1b4cbfa1a3f183f6d5df31cc2b049b1502c409bad911322a7cf88eebb - 0.0% (205 Bytes)

[#007] sha256:8d3b57eb27f6bf79157741011551560e76bc6b1c875f72c9bfae3545474dd2b9 - 96.72% (495 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-05-18 02:45:29 UTC

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

2022-05-18 02:45:29 UTC

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

2022-05-18 02:45:36 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-05-18 02:45:36 UTC

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

2022-11-22 13:06:47 UTC

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

2022-11-22 13:06:47 UTC

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

2023-08-09 10:51:00 UTC

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

2023-08-09 10:51:00 UTC

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

2023-08-09 10:51:02 UTC

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

2023-08-09 11:04:20 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 && apk add --no-cache libmagic && 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/*

2023-08-09 11:04:23 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