Namespace
sengokucola
Image / Tag
maibot:dev-260511
Content Digest
sha256:633063f0c827a3ffa5d2244bf042a4daf466a4c9d02109582a901969510f4e98
Details
Created

2026-05-11 03:59:48 UTC

Size

430 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2026-05-11T03:59:07.560Z
  • org.opencontainers.image.description
    MaiSaka, an LLM-based intelligent agent, is a digital lifeform devoted to understanding you and interacting in the style of a real human. She does not pursue perfection, nor does she seek efficiency; instead, she values warmth, authenticity, and genuine connection.
  • org.opencontainers.image.licenses
    GPL-3.0
  • org.opencontainers.image.revision
    522d9754a1a3de948985e5142d916d367cc0af2a
  • org.opencontainers.image.source
    https://github.com/Mai-with-u/MaiBot
  • org.opencontainers.image.title
    MaiBot
  • org.opencontainers.image.url
    https://github.com/Mai-with-u/MaiBot
  • org.opencontainers.image.version
    nightly

Environment
GPG_KEY

7169605F62C751356D054A26A821E680E5FA6305

MAIBOT_LEGACY_0X_UPGRADE_CONFIRMED

1

PATH

/MaiMBot/.venv/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PYTHON_SHA256

2ab91ff401783ccca64f75d10c882e957bdfd60e2bf5a72f8421793729b78a71

PYTHON_VERSION

3.13.13


Layers

[#000] sha256:57fb71246055257a374deb7564ceca10f43c2352572b501efc08add5d24ebb61 - 6.6% (28.4 MB)

[#001] sha256:d7e109f694fa15e9587ad64aec0c92f3cfb9c0b62f82ff13bb6af389fa4199d0 - 0.29% (1.23 MB)

[#002] sha256:bdf9687e2f39875a9bffc4af3a23ee44ce963d5c3b503b072ea3b747c5adb043 - 2.62% (11.3 MB)

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

[#004] sha256:3eff97079274b4d9276010bea94db85402a06ca4c792019c58eb11a99ef7a178 - 5.38% (23.1 MB)

[#005] sha256:5407230e57ecb566b497ca63584277c52869959b3c738874e4b35c045d1e6c90 - 0.0% (97 Bytes)

[#006] sha256:05e341fa95aa57cb53708bd2a16be582f8a862153f0e2fcb6ed4137e373d24be - 0.04% (165 KB)

[#007] sha256:043cedb7089a208df5560ff7c68bc9b3e729a633ab775219d8a315f1ff440011 - 12.22% (52.6 MB)

[#008] sha256:2fc9301b5a53b57b86d42372ab15fcf415a9448557bdbc2b254f10aa74ebef9e - 71.74% (309 MB)

[#009] sha256:6f6631c58b8d7835256473327686d923a584d377286e2b575a727b3270abdfaf - 1.08% (4.65 MB)

[#010] sha256:a5a0a96941d33ddb901be839c8b3fbb4b96e6b7efcdfcdcd171e785065a17529 - 0.04% (163 KB)

[#011] sha256:8fa2f2cadde775787e9c25016a219f3d3562c2a3451e1672e313202508e8ac5e - 0.0% (358 Bytes)


History
2026-05-05 00:00:00 UTC (debuerreotype 0.17)

# debian.sh --arch 'amd64' out/ 'trixie' '@1777939200'

2026-05-08 19:58:06 UTC (buildkit.dockerfile.v0)

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

2026-05-08 19:58:06 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-05-08 19:58:06 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305

2026-05-08 19:58:06 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.13.13

2026-05-08 19:58:06 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SHA256=2ab91ff401783ccca64f75d10c882e957bdfd60e2bf5a72f8421793729b78a71

2026-05-08 20:09:13 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-05-08 20:09:13 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-05-08 20:09:13 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2026-05-11 03:59:13 UTC (buildkit.dockerfile.v0)

COPY /uv /uvx /bin/ # buildkit

2026-05-11 03:59:13 UTC (buildkit.dockerfile.v0)

WORKDIR /MaiMBot

2026-05-11 03:59:13 UTC (buildkit.dockerfile.v0)

ENV MAIBOT_LEGACY_0X_UPGRADE_CONFIRMED=1

2026-05-11 03:59:13 UTC (buildkit.dockerfile.v0)

ENV PATH=/MaiMBot/.venv/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2026-05-11 03:59:13 UTC (buildkit.dockerfile.v0)

COPY pyproject.toml uv.lock ./ # buildkit

2026-05-11 03:59:18 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c apt-get update && apt-get install -y git # buildkit

2026-05-11 03:59:48 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c uv sync --frozen --no-dev --no-install-project # buildkit

2026-05-11 03:59:48 UTC (buildkit.dockerfile.v0)

COPY . . # buildkit

2026-05-11 03:59:48 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c git clone --depth 1 --branch main https://github.com/Mai-with-u/MaiBot-Napcat-Adapter.git plugin-templates/MaiBot-Napcat-Adapter # buildkit

2026-05-11 03:59:48 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c chmod +x docker-entrypoint.sh # buildkit

2026-05-11 03:59:48 UTC (buildkit.dockerfile.v0)

EXPOSE [8000/tcp]

2026-05-11 03:59:48 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["./docker-entrypoint.sh"]

Details
Created

2026-05-11 04:00:01 UTC

Size

410 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2026-05-11T03:59:08.190Z
  • org.opencontainers.image.description
    MaiSaka, an LLM-based intelligent agent, is a digital lifeform devoted to understanding you and interacting in the style of a real human. She does not pursue perfection, nor does she seek efficiency; instead, she values warmth, authenticity, and genuine connection.
  • org.opencontainers.image.licenses
    GPL-3.0
  • org.opencontainers.image.revision
    522d9754a1a3de948985e5142d916d367cc0af2a
  • org.opencontainers.image.source
    https://github.com/Mai-with-u/MaiBot
  • org.opencontainers.image.title
    MaiBot
  • org.opencontainers.image.url
    https://github.com/Mai-with-u/MaiBot
  • org.opencontainers.image.version
    nightly

Environment
GPG_KEY

7169605F62C751356D054A26A821E680E5FA6305

MAIBOT_LEGACY_0X_UPGRADE_CONFIRMED

1

PATH

/MaiMBot/.venv/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PYTHON_SHA256

2ab91ff401783ccca64f75d10c882e957bdfd60e2bf5a72f8421793729b78a71

PYTHON_VERSION

3.13.13


Layers

[#000] sha256:9ebf9a1d0c9ca1bcb377e9dba38a3fdd3e89cf37164f4245286c24f8cd50a39e - 7.0% (28.7 MB)

[#001] sha256:f29d54df6a17a8d813d02056735d98d7621095c6beea31b2fc579bcb7cd0c989 - 0.3% (1.21 MB)

[#002] sha256:00023ca199aff77e3765640af6e13f9b2f72f18cb4b3577469a1096776333744 - 2.73% (11.2 MB)

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

[#004] sha256:b9b247a0e5a2ad62a1f236ca333d9fea92e268b5aa22dc4affd048bf291f85c0 - 5.4% (22.2 MB)

[#005] sha256:4a265b16ba01e01cc0c4d38a68628d4915e7a16454b1596a1a5c0f8e17f34423 - 0.0% (97 Bytes)

[#006] sha256:3425bb933f3502f36bf7eee78533dc365e6ee07604e4529dae9f3f7144eea466 - 0.04% (165 KB)

[#007] sha256:507b6910f0687f2ea5b342ceffa9447cdd1e74746f6b5fd75f467bab38ccfa77 - 12.78% (52.5 MB)

[#008] sha256:9d856e8054b6b939b31fcf9e6b7339ef9afbe18a3944055ea183af322b3788ee - 70.57% (290 MB)

[#009] sha256:7aa359cd3f1e00a4abb6fe0bb54c4f7d583fad023db056cfcf441e552ab28d2e - 1.13% (4.65 MB)

[#010] sha256:f689a053c3ac32bd6a388f441263f698e9f3c4ffb7ea654d6910da3976963c0d - 0.04% (163 KB)

[#011] sha256:4e9817a9fd4201c72fa52ec7261a0c3993a2c958d8325b3011640f7fd3b837c3 - 0.0% (358 Bytes)


History
2026-05-05 00:00:00 UTC (debuerreotype 0.17)

# debian.sh --arch 'arm64' out/ 'trixie' '@1777939200'

2026-05-08 19:59:44 UTC (buildkit.dockerfile.v0)

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

2026-05-08 19:59:44 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-05-08 19:59:44 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305

2026-05-08 19:59:44 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.13.13

2026-05-08 19:59:44 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SHA256=2ab91ff401783ccca64f75d10c882e957bdfd60e2bf5a72f8421793729b78a71

2026-05-08 20:13:29 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-05-08 20:13:29 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-05-08 20:13:29 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2026-05-11 03:59:14 UTC (buildkit.dockerfile.v0)

COPY /uv /uvx /bin/ # buildkit

2026-05-11 03:59:14 UTC (buildkit.dockerfile.v0)

WORKDIR /MaiMBot

2026-05-11 03:59:14 UTC (buildkit.dockerfile.v0)

ENV MAIBOT_LEGACY_0X_UPGRADE_CONFIRMED=1

2026-05-11 03:59:14 UTC (buildkit.dockerfile.v0)

ENV PATH=/MaiMBot/.venv/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2026-05-11 03:59:14 UTC (buildkit.dockerfile.v0)

COPY pyproject.toml uv.lock ./ # buildkit

2026-05-11 03:59:28 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c apt-get update && apt-get install -y git # buildkit

2026-05-11 04:00:00 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c uv sync --frozen --no-dev --no-install-project # buildkit

2026-05-11 04:00:00 UTC (buildkit.dockerfile.v0)

COPY . . # buildkit

2026-05-11 04:00:01 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c git clone --depth 1 --branch main https://github.com/Mai-with-u/MaiBot-Napcat-Adapter.git plugin-templates/MaiBot-Napcat-Adapter # buildkit

2026-05-11 04:00:01 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c chmod +x docker-entrypoint.sh # buildkit

2026-05-11 04:00:01 UTC (buildkit.dockerfile.v0)

EXPOSE [8000/tcp]

2026-05-11 04:00:01 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["./docker-entrypoint.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