2026-02-09 16:02:08 UTC
4.6 GB
7169605F62C751356D054A26A821E680E5FA6305
LOCALE_DIR/home/lada/.local/lib/python3.13/site-packages/lada/locale
PATH/home/lada/.local/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PYTHON_SHA2562a84cd31dd8d8ea8aaff75de66fc1b4b0127dd5799aa50a64ae9a313885b4593
PYTHON_VERSION3.13.12
[#000] sha256:0c8d55a45c0dc58de60579b9cc5b708de9e7957f4591fc7de941b67c7e245da0 - 0.6% (28.4 MB)
[#001] sha256:03af238a5946948d06e8485bb27b05831c5d13f0b3781a01fe347aaf847c2400 - 0.03% (1.23 MB)
[#002] sha256:686599c79c8709aa5d9f1abf19c75b1760ae0a0ea0335206fe1db9a8793e09f6 - 0.24% (11.3 MB)
[#003] sha256:f1cadbd7abd229d3d8c50b4aa381724025f6bfe89783a8d2bfd6fa751a75946b - 0.0% (252 Bytes)
[#004] sha256:3739f1157cd91a198912f1ce4fdf6427b9197db5b40fb35a1a96d869df8a5ccf - 0.0% (3.25 KB)
[#005] sha256:0d7b00632c08e35579d04ec7692caec4ebd4e1d944c5dfb1262323dab4ceeeea - 0.0% (386 Bytes)
[#006] sha256:f0c34c4cce38fbf34b3b2b1cfdc36765f25ef243db9d2add87a968982d85938d - 0.0% (154 Bytes)
[#007] sha256:305ab25bca622e0c392f0481777b71f5be87e3ced4f22a03bf08889e8eaff237 - 0.83% (39.2 MB)
[#008] sha256:817bf417c60ce5ecc122aec86ee4f649d9cfa22902c2f08eb70db8cb7f90a76a - 0.82% (38.4 MB)
[#009] sha256:08a398bb6a82f8b23f7f4dd84442a7cf945eaaff4cfe2abc5beb10552ccd6a72 - 0.11% (5.16 MB)
[#010] sha256:2213d6534e3d6378fcae23a669b72f05c70e00a656203556fc9f902f5c1b2e3c - 1.47% (69.3 MB)
[#011] sha256:7039bfd70d375c55059e5837bdd163aa1eb3acf35bfca2b2d027127eaf0ad169 - 2.01% (94.6 MB)
[#012] sha256:ee5de3c00a337885b76b43db9c50304e0b8c8c3e6afce8a5febc17936daa5306 - 5.24% (247 MB)
[#013] sha256:5a477fabf32bfb3e87692577231b408c4b102e73fd42401d676096b34e09223e - 88.66% (4.08 GB)
# debian.sh --arch 'amd64' out/ 'trixie' '@1769990400'
2026-02-04 20:03:39 UTC (buildkit.dockerfile.v0)ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2026-02-04 20:03:39 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates netbase tzdata ; apt-get dist-clean # buildkit
2026-02-04 20:03:39 UTC (buildkit.dockerfile.v0)ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305
2026-02-04 20:03:39 UTC (buildkit.dockerfile.v0)ENV PYTHON_VERSION=3.13.12
2026-02-04 20:03:39 UTC (buildkit.dockerfile.v0)ENV PYTHON_SHA256=2a84cd31dd8d8ea8aaff75de66fc1b4b0127dd5799aa50a64ae9a313885b4593
2026-02-04 20:18:49 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' && echo '--with-lto') --with-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="$(dpkg-buildflags --get CFLAGS)"; LDFLAGS="$(dpkg-buildflags --get LDFLAGS)"; LDFLAGS="${LDFLAGS:-} -Wl,--strip-all"; arch="$(dpkg --print-architecture)"; arch="${arch##*-}"; case "$arch" in amd64|arm64) EXTRA_CFLAGS="${EXTRA_CFLAGS:-} -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer"; ;; i386) ;; *) EXTRA_CFLAGS="${EXTRA_CFLAGS:-} -fno-omit-frame-pointer"; ;; esac; 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 -rt dpkg-query --search | awk 'sub(":$", "", $1) { print $1 }' | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; apt-get dist-clean; export PYTHONDONTWRITEBYTECODE=1; python3 --version; pip3 --version # buildkit
2026-02-04 20:18:49 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
2026-02-04 20:18:49 UTC (buildkit.dockerfile.v0)CMD ["python3"]
2026-02-09 14:21:08 UTC/bin/sh -c useradd --create-home lada
2026-02-09 14:40:59 UTC/bin/sh -c mkdir -p /home/lada/.config/Ultralytics && echo '{"settings_version":"0.0.6","datasets_dir":"datasets","weights_dir":"weights","runs_dir":"experiments","uuid":"dummy","sync":false,"api_key":"","openai_api_key":"","clearml":false,"comet":false,"dvc":false,"hub":false,"mlflow":false,"neptune":false,"raytune":false,"tensorboard":false,"wandb":false,"vscode_msg":false,"openvino_msg":false}' > /home/lada/.config/Ultralytics/settings.json && chown -R lada:lada /home/lada/.config
2026-02-09 14:40:59 UTC/bin/sh -c mkdir -p model_weights/3rd_party mnt && chmod -R 555 model_weights && chmod 777 mnt
2026-02-09 14:41:08 UTC/bin/sh -c #(nop) ADD e1534c632158cce2431c8c4b372147ff966785301969e35b09d2c1019437763b in model_weights/lada_mosaic_detection_model_v2.pt
2026-02-09 14:41:18 UTC/bin/sh -c #(nop) ADD 2d72be4d1225b8cb2e0f5b1ec26075b50337b7ed25c02b62d418624c6b7dd1da in model_weights/lada_mosaic_detection_model_v4_accurate.pt
2026-02-09 14:41:21 UTC/bin/sh -c #(nop) ADD 9f111dbe6260136e7ce388150b8d493aab6555d3814a6bcb2c2d679f2207fa49 in model_weights/lada_mosaic_detection_model_v4_fast.pt
2026-02-09 14:41:36 UTC/bin/sh -c #(nop) ADD 18cd17df6bc121a029e01b488425fa30ea6a0f8a8ea59f9691f03df41a6d4e39 in model_weights/lada_mosaic_restoration_model_generic_v1.2.pth
2026-02-09 14:41:58 UTC/bin/sh -c #(nop) ADD 78da18ed281b1687d0ed81d6e26ff88849e83d16946780cbd1c5e8ff4842a870 in model_weights/3rd_party/clean_youknow_video.pth
2026-02-09 14:42:05 UTC/bin/sh -c chmod 444 model_weights/*\.pt* model_weights/3rd_party/*\.pt*
2026-02-09 16:02:04 UTC/bin/sh -c #(nop) COPY --chown=lada:lada dir:bad083106f08721d1539a3423a29f48d87109b0b83eea6dfb19d2a01c8ca7d09 in /home/lada/.local
2026-02-09 16:02:08 UTC/bin/sh -c #(nop) USER lada
2026-02-09 16:02:08 UTC/bin/sh -c #(nop) ENV PATH=/home/lada/.local/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2026-02-09 16:02:08 UTC/bin/sh -c #(nop) ENV LOCALE_DIR=/home/lada/.local/lib/python3.13/site-packages/lada/locale
2026-02-09 16:02:08 UTC/bin/sh -c #(nop) ENTRYPOINT ["lada-cli"]
2026-02-09 16:02:08 UTC/bin/sh -c #(nop) CMD ["--help"]
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.