Namespace
ihmily
Image / Tag
douyin-live-recorder:v3.0.8
Content Digest
sha256:1970533a2647dbfed6c81b4c7e9da7025d77483d4e7246d9cee4d37c9d8bdf4c
Details
Created

2024-10-04 18:21:52 UTC

Size

364 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_VERSION

3.11.10


Layers

[#000] sha256:302e3ee498053a7b5332ac79e8efebec16e900289fc1ecd1c754ce8fa047fcab - 7.62% (27.8 MB)

[#001] sha256:4aeebc636537eab716f32d24a71cab7591b119e95b4294ed38a8981fe1722eb5 - 0.92% (3.35 MB)

[#002] sha256:2aee89346c425641eb096f84c6895a49eef1f89ec9fafcad4e180e81505e0da5 - 4.19% (15.3 MB)

[#003] sha256:0538735e543faf28c166d043655e555cafb37c0d23ed50557673c76c76a395d8 - 0.0% (248 Bytes)

[#004] sha256:279032128859801727e6ab3327cdee582e3c9e9bb69cd545b1d3300d07883d48 - 0.0% (92 Bytes)

[#005] sha256:a91ae5baea985d54805108bd8306e086fc73c4a384478b0970b50df52611eab0 - 4.97% (18.1 MB)

[#006] sha256:ee621d0d46da681c92522b330ac861a38b550765561eb7e24f140aef6e72705b - 20.54% (74.9 MB)

[#007] sha256:ef10d04fbbd92a16afacc1c84d74d7f02d3db2603f9118bc2dfe1ee81c18eee9 - 2.46% (8.98 MB)

[#008] sha256:2a1aee08c4eaf154f87ea0d2962fc68d15155982e21cbc8838f11102b6404c35 - 59.31% (216 MB)


History
2024-09-09 17:16:05 UTC

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

2024-09-09 17:16:05 UTC

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

2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)

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

2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2024-09-09 17:16:05 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

2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.10

2024-09-09 17:16:05 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 libexpat1-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"; 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 --with-lto --with-system-expat --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:-}" "PROFILE_TASK=${PROFILE_TASK:-}" ; rm python; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" "PROFILE_TASK=${PROFILE_TASK:-}" 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 ; pip3 --version # buildkit

2024-09-09 17:16:05 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

2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2024-10-04 18:21:10 UTC (buildkit.dockerfile.v0)

WORKDIR /app

2024-10-04 18:21:10 UTC (buildkit.dockerfile.v0)

COPY . /app # buildkit

2024-10-04 18:21:23 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

2024-10-04 18:21:27 UTC (buildkit.dockerfile.v0)

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

2024-10-04 18:21:52 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

2024-10-04 18:21:52 UTC (buildkit.dockerfile.v0)

CMD ["python" "main.py"]

Details
Created

2024-10-04 18:25:37 UTC

Size

339 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_VERSION

3.11.10


Layers

[#000] sha256:14c9d9d199323cbf0a4c2347a8af85f2875c1f2c26a1558fd34dfca7a26cff22 - 8.2% (27.8 MB)

[#001] sha256:d847ad1879f2202660d37d9bedf1b8986116079d578b010e46b6917facf23dd5 - 0.94% (3.18 MB)

[#002] sha256:3ad6ca65b08004fab16f242eca762e5ac74bc285a4b857c37a8551089925e394 - 4.49% (15.2 MB)

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

[#004] sha256:7b571c656b0fa6622a996283cbe89f54aeebf49d7b622e1674dceff17ea6f77e - 0.0% (92 Bytes)

[#005] sha256:a91ae5baea985d54805108bd8306e086fc73c4a384478b0970b50df52611eab0 - 5.34% (18.1 MB)

[#006] sha256:0c49c00adfb9ddafbef085db6254db4ea095fe4e4101fbdc4246c185f536d4ec - 21.97% (74.5 MB)

[#007] sha256:ea194db614a0811b4794e83b4a0ec7bb5d90124f3665d9c628984d6f207ac701 - 2.63% (8.93 MB)

[#008] sha256:e0edd0466201da54469a3fa3fec4d8030ed414ac871d11aa509a5f6b696f8fd7 - 56.44% (191 MB)


History
2024-09-09 17:16:05 UTC

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

2024-09-09 17:16:05 UTC

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

2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)

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

2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2024-09-09 17:16:05 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

2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.10

2024-09-09 17:16:05 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 libexpat1-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"; 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 --with-lto --with-system-expat --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:-}" "PROFILE_TASK=${PROFILE_TASK:-}" ; rm python; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" "PROFILE_TASK=${PROFILE_TASK:-}" 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 ; pip3 --version # buildkit

2024-09-09 17:16:05 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

2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2024-10-04 18:21:10 UTC (buildkit.dockerfile.v0)

WORKDIR /app

2024-10-04 18:21:10 UTC (buildkit.dockerfile.v0)

COPY . /app # buildkit

2024-10-04 18:22:47 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

2024-10-04 18:23:18 UTC (buildkit.dockerfile.v0)

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

2024-10-04 18:25:37 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

2024-10-04 18:25:37 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