Namespace
zmister
Image / Tag
mrdoc:v2
Content Digest
sha256:0792991acdad82cc52fa1f3b1a85f411c9344ffb42e6aca6daacf6c1b036b55d
Details
Created

2022-02-21 09:05:48 UTC

Size

497 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

c518250e91a70d7b20cceb15272209a4ded2a0c263ae5776f129e0d9b5674309

PYTHON_GET_PIP_URL

https://github.com/pypa/get-pip/raw/3cb8888cc2869620f57d5d2da64da38f516078c7/public/get-pip.py

PYTHON_PIP_VERSION

21.2.4

PYTHON_SETUPTOOLS_VERSION

57.5.0

PYTHON_VERSION

3.7.12

TZ

Asia/Shanghai

USER

admin


Layers

[#000] sha256:97518928ae5f3d52d4164b314a7e73654eb686ecd8aafa0b79acd980773a740d - 0.54% (2.69 MB)

[#001] sha256:8f1c01f59fcc7f7c93b7819b80102de4622e5b448ebf68120a07bc88366cc08a - 0.05% (275 KB)

[#002] sha256:464d4fea566338069e77ee2a8d393d2bd5b3aa0a603031b9e486745b03bb6683 - 2.03% (10.1 MB)

[#003] sha256:cc898d47eef320ac619094e3a9e88f8d7d453a69658756fd21e31b59678a6161 - 0.0% (229 Bytes)

[#004] sha256:07c63eb0033be3783382a2bd43503b60f18ad87c147322a72fab1922adf75370 - 0.45% (2.24 MB)

[#005] sha256:c42ae68a4e3fc47ea6108dfa972a7badd5d79fcdec9bd44ca65c1df510e1c773 - 0.0% (12 KB)

[#006] sha256:d91ba653aadd345f79def26606e419140e49f4a17c78c590ce6cc66fc2956d84 - 0.0% (207 Bytes)

[#007] sha256:0fa6e4e2a796057945702d893f022d2e86d3b1da584b6d5e5c3a1227929b3abd - 96.92% (481 MB)


History
2021-11-12 17:19:44 UTC

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

2021-11-12 17:19:45 UTC

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

2021-11-12 23:58:30 UTC

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

2021-11-13 02:36:52 UTC

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

2021-11-13 04:03:25 UTC

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

2021-11-13 04:21:19 UTC

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

2021-11-13 04:21:19 UTC

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

2021-11-13 04:30:48 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-11-13 04:30:50 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-11-13 04:30:50 UTC

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

2021-11-13 04:30:51 UTC

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

2021-11-13 04:30:51 UTC

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

2021-11-13 04:30:51 UTC

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

2021-11-13 04:31:01 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" "setuptools==$PYTHON_SETUPTOOLS_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-11-13 04:31:02 UTC

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

2022-01-07 06:55:50 UTC

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

2022-01-07 06:55:51 UTC

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

2022-02-21 08:54:22 UTC

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

2022-02-21 08:54:22 UTC

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

2022-02-21 08:54:24 UTC

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

2022-02-21 09:05:46 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://nl.alpinelinux.org/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-02-21 09:05:48 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