Namespace
ihmily
Image / Tag
douyin-live-recorder:v4.0.3
Content Digest
sha256:fe8506b08f0a99a69835d58eff72084c3fd61afb08d29857662e1c13fecee13e
Details
Created

2025-06-06 11:01:40 UTC

Size

348 MB

Content Digest
Environment
GPG_KEY

A035C8C19219BA821ECEA86B64E628F8D684696D

LANG

C.UTF-8

PATH

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

PYTHON_SHA256

8fb5f9fbc7609fa822cb31549884575db7fd9657cbffb89510b5d7975963a83a

PYTHON_VERSION

3.11.13


Layers

[#000] sha256:61320b01ae5e0798393ef25f2dc72faf43703e60ba089b07d7170acbabbf8f62 - 7.74% (26.9 MB)

[#001] sha256:91e6593878cc4b0d4c9eccb12c18fd9f2b266d35bc2da149439d43831180748d - 0.96% (3.35 MB)

[#002] sha256:c229bae17638423fbdc6680d790085a4262c8ee672c4d380e5bff27411abae99 - 4.44% (15.5 MB)

[#003] sha256:befce167985323633ac1acd06bd4fc78cefb02f4215bf323c807c5c65edbd9f5 - 0.0% (250 Bytes)

[#004] sha256:6a4f72b17c556c4acd650d6bec1d1e4fcca1844d9ad92fe44942271b919218b7 - 0.0% (93 Bytes)

[#005] sha256:851046327ef50924433c1c77213affea6d3ed49b57dcf90f72af14112a2672c5 - 0.04% (125 KB)

[#006] sha256:4342611833b55878ba2cce146c2b36d9ae36e7f576ebead653447d99ecec85c7 - 21.7% (75.5 MB)

[#007] sha256:f89c418006d780da77ff014cc1c27c9858dc4d5c253b3351cb0c424100d1156e - 3.0% (10.5 MB)

[#008] sha256:047c2c4d184086b18862466eb5f1793fddaea079a225f79c167f094413e1ba3d - 62.12% (216 MB)


History
2025-05-20 00:00:00 UTC (debuerreotype 0.15)

# debian.sh --arch 'amd64' out/ 'bookworm' '@1747699200'

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates netbase tzdata ; rm -rf /var/lib/apt/lists/* # buildkit

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.13

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SHA256=8fb5f9fbc7609fa822cb31549884575db7fd9657cbffb89510b5d7975963a83a

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends dpkg-dev gcc gnupg libbluetooth-dev libbz2-dev libc6-dev libdb-dev libffi-dev libgdbm-dev liblzma-dev libncursesw5-dev libreadline-dev libsqlite3-dev libssl-dev make tk-dev uuid-dev wget xz-utils zlib1g-dev ; wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz"; echo "$PYTHON_SHA256 *python.tar.xz" | sha256sum -c -; 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; 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 $(test "$gnuArch" != 'riscv64-linux-musl' && echo '--with-lto') --with-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="$(dpkg-buildflags --get CFLAGS)"; LDFLAGS="$(dpkg-buildflags --get LDFLAGS)"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:-}" ; rm python; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" python ; 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' \) \) \) -exec rm -rf '{}' + ; ldconfig; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark; find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec ldd '{}' ';' | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; export PYTHONDONTWRITEBYTECODE=1; python3 --version; pip3 install --disable-pip-version-check --no-cache-dir --no-compile 'setuptools==65.5.1' 'wheel<0.46' ; pip3 --version # buildkit

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; for src in idle3 pip3 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 # buildkit

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2025-06-06 11:01:00 UTC (buildkit.dockerfile.v0)

WORKDIR /app

2025-06-06 11:01:00 UTC (buildkit.dockerfile.v0)

COPY . /app # buildkit

2025-06-06 11:01:12 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c apt-get update && apt-get install -y curl gnupg && curl -sL https://deb.nodesource.com/setup_20.x | bash - && apt-get install -y nodejs # buildkit

2025-06-06 11:01:16 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c pip install --no-cache-dir -r requirements.txt # buildkit

2025-06-06 11:01:40 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c apt-get update && apt-get install -y ffmpeg tzdata && ln -fs /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && dpkg-reconfigure -f noninteractive tzdata # buildkit

2025-06-06 11:01:40 UTC (buildkit.dockerfile.v0)

CMD ["python" "main.py"]

Details
Created

2025-06-06 11:06:26 UTC

Size

322 MB

Content Digest
Environment
GPG_KEY

A035C8C19219BA821ECEA86B64E628F8D684696D

LANG

C.UTF-8

PATH

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

PYTHON_SHA256

8fb5f9fbc7609fa822cb31549884575db7fd9657cbffb89510b5d7975963a83a

PYTHON_VERSION

3.11.13


Layers

[#000] sha256:b16f1b16678093d11ecfece1004207a40f9bc1b7d9d1d16a070c1db552038818 - 8.3% (26.8 MB)

[#001] sha256:7840cd825272881c40e91120a55b4d26f7e5829aa530409b56fbc4831b2f944c - 0.99% (3.18 MB)

[#002] sha256:40a9c8db52542fcb593972a6a77ee59a33b0537fd77745d2d19603dfd56585af - 4.77% (15.4 MB)

[#003] sha256:ed8f18310f179c44ab814c96f3edd5c55622659ecec9446cd9c3c248bb74bc8e - 0.0% (249 Bytes)

[#004] sha256:6a4f72b17c556c4acd650d6bec1d1e4fcca1844d9ad92fe44942271b919218b7 - 0.0% (93 Bytes)

[#005] sha256:851046327ef50924433c1c77213affea6d3ed49b57dcf90f72af14112a2672c5 - 0.04% (125 KB)

[#006] sha256:1b2eb9bb331240bdc9dc585aa84667e99c071e7b9c7af3795d526f5e4b2c3542 - 23.3% (75.1 MB)

[#007] sha256:79e03d6b7599f6dadb26c6ab6fa88ffdd03a3391ccec2ce22789965f56394bb0 - 3.22% (10.4 MB)

[#008] sha256:7c0eb4c1a92d44366973676be83ea325057e564555374ed72af12ced8f8ea60f - 59.38% (191 MB)


History
2025-05-20 00:00:00 UTC (debuerreotype 0.15)

# debian.sh --arch 'arm64' out/ 'bookworm' '@1747699200'

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates netbase tzdata ; rm -rf /var/lib/apt/lists/* # buildkit

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.13

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SHA256=8fb5f9fbc7609fa822cb31549884575db7fd9657cbffb89510b5d7975963a83a

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends dpkg-dev gcc gnupg libbluetooth-dev libbz2-dev libc6-dev libdb-dev libffi-dev libgdbm-dev liblzma-dev libncursesw5-dev libreadline-dev libsqlite3-dev libssl-dev make tk-dev uuid-dev wget xz-utils zlib1g-dev ; wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz"; echo "$PYTHON_SHA256 *python.tar.xz" | sha256sum -c -; 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; 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 $(test "$gnuArch" != 'riscv64-linux-musl' && echo '--with-lto') --with-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="$(dpkg-buildflags --get CFLAGS)"; LDFLAGS="$(dpkg-buildflags --get LDFLAGS)"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:-}" ; rm python; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" python ; 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' \) \) \) -exec rm -rf '{}' + ; ldconfig; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark; find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec ldd '{}' ';' | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; export PYTHONDONTWRITEBYTECODE=1; python3 --version; pip3 install --disable-pip-version-check --no-cache-dir --no-compile 'setuptools==65.5.1' 'wheel<0.46' ; pip3 --version # buildkit

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; for src in idle3 pip3 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 # buildkit

2025-06-03 23:02:53 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2025-06-06 11:01:00 UTC (buildkit.dockerfile.v0)

WORKDIR /app

2025-06-06 11:01:00 UTC (buildkit.dockerfile.v0)

COPY . /app # buildkit

2025-06-06 11:02:56 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c apt-get update && apt-get install -y curl gnupg && curl -sL https://deb.nodesource.com/setup_20.x | bash - && apt-get install -y nodejs # buildkit

2025-06-06 11:03:43 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c pip install --no-cache-dir -r requirements.txt # buildkit

2025-06-06 11:06:26 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c apt-get update && apt-get install -y ffmpeg tzdata && ln -fs /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && dpkg-reconfigure -f noninteractive tzdata # buildkit

2025-06-06 11:06:26 UTC (buildkit.dockerfile.v0)

CMD ["python" "main.py"]

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