Namespace
simpleyyt
Image / Tag
manus-backend:2.8
Content Digest
sha256:8866f84663c5be015745e37c2281468481fe9bd3786bf16d0f17463444074cba
Details
Created

2026-09-14 18:34:27 UTC

Size

341 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2026-09-14T18:36:32.652Z
  • org.opencontainers.image.description
    AI Manus is a general-purpose AI Agent system that supports running various tools and operations in a sandbox environment.
  • org.opencontainers.image.licenses
    MIT
  • org.opencontainers.image.revision
    496547ce6a5f599333138342ec126a7ea8ec9646
  • org.opencontainers.image.source
    https://github.com/Simpleyyt/ai-manus
  • org.opencontainers.image.title
    ai-manus
  • org.opencontainers.image.url
    https://github.com/Simpleyyt/ai-manus
  • org.opencontainers.image.version
    2.8.0

Environment
GPG_KEY

7169605F62C751356D054A26A821E680E5FA6305

LANG

C.UTF-8

PATH

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

PYTHONPATH

/app

PYTHON_SHA256

5c8462af5790baf43a321a1559dbe0db06d1be4300fb85fb53c40060668e548a

PYTHON_VERSION

3.12.14

UV_INDEX_URL

https://mirrors.aliyun.com/pypi/simple/


Layers

[#000] sha256:6310eb16bf4251731feab01e8f633bf5e2d75a657ccad97f420b1f83cce457be - 8.34% (28.4 MB)

[#001] sha256:dbd0b7849e6c06b61e1fa6b7ffe053f246ce0075890620e3db64b47bb662433a - 1.19% (4.07 MB)

[#002] sha256:1560cfed01dc4c72c07f789d860078d74466a1f9a26b33a2e35d887b5f90dd3f - 3.39% (11.6 MB)

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

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

[#005] sha256:418f95b888da9e8200346c3651560e7d5b1b8316103fa6dbea5ec6cbd91897b5 - 6.24% (21.3 MB)

[#006] sha256:b1c21a3078c4e6e1b2dbea06f5881d3347a6f2bc83cb08a6dad06f3a77f93603 - 20.55% (70 MB)

[#007] sha256:13549e2343b94bfdcded2dd85403b7c145bae3ba4334db4ecaa4a6b12734adc3 - 12.33% (42 MB)

[#008] sha256:1bdb4935801f95944c6f970cedd257655199c4b876a1abfce15a87cb5a1b6f9b - 0.0% (690 Bytes)

[#009] sha256:e6d1974b6ad45277ff205c8f58d9bfc220b4c39fd68a5463b25c0b0b4965eecd - 47.81% (163 MB)

[#010] sha256:36736c1b96909fc03756b0d156b3679863364e2cfc1c8ad462bcec6c70c6c39b - 0.13% (464 KB)


History
2026-08-24 00:00:00 UTC (debuerreotype 0.17)

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

2026-09-01 00:02:59 UTC (buildkit.dockerfile.v0)

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

2026-09-01 00:02:59 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2026-09-01 00:02:59 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-09-01 00:02:59 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305

2026-09-01 00:02:59 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.12.14

2026-09-01 00:02:59 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SHA256=5c8462af5790baf43a321a1559dbe0db06d1be4300fb85fb53c40060668e548a

2026-09-01 00:12:40 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 g++ 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-09-01 00:12:40 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-09-01 00:12:40 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2026-09-14 18:30:46 UTC (buildkit.dockerfile.v0)

WORKDIR /app

2026-09-14 18:30:51 UTC (buildkit.dockerfile.v0)

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

2026-09-14 18:31:04 UTC (buildkit.dockerfile.v0)

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

2026-09-14 18:31:07 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c pip install uv # buildkit

2026-09-14 18:31:07 UTC (buildkit.dockerfile.v0)

ENV UV_INDEX_URL=https://mirrors.aliyun.com/pypi/simple/

2026-09-14 18:31:07 UTC (buildkit.dockerfile.v0)

COPY pyproject.toml ./ # buildkit

2026-09-14 18:31:19 UTC (buildkit.dockerfile.v0)

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

2026-09-14 18:34:27 UTC (buildkit.dockerfile.v0)

COPY . . # buildkit

2026-09-14 18:34:27 UTC (buildkit.dockerfile.v0)

ENV PYTHONPATH=/app

2026-09-14 18:34:27 UTC (buildkit.dockerfile.v0)

EXPOSE [8000/tcp]

2026-09-14 18:34:27 UTC (buildkit.dockerfile.v0)

CMD ["uv" "run" "uvicorn" "app.main:app" "--host" "0.0.0.0" "--port" "8000"]

Details
Created

2026-09-14 18:34:27 UTC

Size

339 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2026-09-14T18:36:32.652Z
  • org.opencontainers.image.description
    AI Manus is a general-purpose AI Agent system that supports running various tools and operations in a sandbox environment.
  • org.opencontainers.image.licenses
    MIT
  • org.opencontainers.image.revision
    496547ce6a5f599333138342ec126a7ea8ec9646
  • org.opencontainers.image.source
    https://github.com/Simpleyyt/ai-manus
  • org.opencontainers.image.title
    ai-manus
  • org.opencontainers.image.url
    https://github.com/Simpleyyt/ai-manus
  • org.opencontainers.image.version
    2.8.0

Environment
GPG_KEY

7169605F62C751356D054A26A821E680E5FA6305

LANG

C.UTF-8

PATH

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

PYTHONPATH

/app

PYTHON_SHA256

5c8462af5790baf43a321a1559dbe0db06d1be4300fb85fb53c40060668e548a

PYTHON_VERSION

3.12.14

UV_INDEX_URL

https://mirrors.aliyun.com/pypi/simple/


Layers

[#000] sha256:bf7af0229701decd1b9f42143504fc8f69e5664c37e57001d198e731e4f86c2e - 8.49% (28.8 MB)

[#001] sha256:ab2cb3ee67af16dd0212f1564a3c1a7bfc96172b7c21c74895492bd87456fb24 - 1.3% (4.39 MB)

[#002] sha256:8aff2d3a9af8ed70ae2aa065663f6a7b99d3cd41564528e8d5f039ec0faae595 - 3.39% (11.5 MB)

[#003] sha256:3550292b2150d689c8a69849320a815d1d54883f6aecf670f098c1a16f2c5436 - 0.0% (251 Bytes)

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

[#005] sha256:86d10c1a3ca68efa0bbf3dd004431fed73ea216e1652a489163947aaedfe64a6 - 6.24% (21.1 MB)

[#006] sha256:a2654d85dd04ccd0d4a6db77e69e68db3dce28f0e3347591c371630c875e2c8f - 20.64% (69.9 MB)

[#007] sha256:df4e41d22c9e2151b843526a3817412ea4c0e35b96261f7712cbc6e01759161e - 12.12% (41.1 MB)

[#008] sha256:400065195b61053d4257af9e72e50d93134e52e60d2783fb72b05392da8275c3 - 0.0% (691 Bytes)

[#009] sha256:4b6555e0c1bc6ccbc02bb19b61d28991344e7205d2c3d1dbea115ba3785efe0e - 47.7% (162 MB)

[#010] sha256:36736c1b96909fc03756b0d156b3679863364e2cfc1c8ad462bcec6c70c6c39b - 0.13% (464 KB)


History
2026-08-24 00:00:00 UTC (debuerreotype 0.17)

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

2026-08-31 23:39:04 UTC (buildkit.dockerfile.v0)

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

2026-08-31 23:39:04 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2026-08-31 23:39:04 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-08-31 23:39:04 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305

2026-08-31 23:39:04 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.12.14

2026-08-31 23:39:04 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SHA256=5c8462af5790baf43a321a1559dbe0db06d1be4300fb85fb53c40060668e548a

2026-08-31 23:50:54 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 g++ 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-08-31 23:50:54 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-08-31 23:50:54 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2026-09-14 18:30:46 UTC (buildkit.dockerfile.v0)

WORKDIR /app

2026-09-14 18:31:36 UTC (buildkit.dockerfile.v0)

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

2026-09-14 18:33:35 UTC (buildkit.dockerfile.v0)

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

2026-09-14 18:34:05 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c pip install uv # buildkit

2026-09-14 18:34:05 UTC (buildkit.dockerfile.v0)

ENV UV_INDEX_URL=https://mirrors.aliyun.com/pypi/simple/

2026-09-14 18:34:05 UTC (buildkit.dockerfile.v0)

COPY pyproject.toml ./ # buildkit

2026-09-14 18:34:27 UTC (buildkit.dockerfile.v0)

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

2026-09-14 18:34:27 UTC (buildkit.dockerfile.v0)

COPY . . # buildkit

2026-09-14 18:34:27 UTC (buildkit.dockerfile.v0)

ENV PYTHONPATH=/app

2026-09-14 18:34:27 UTC (buildkit.dockerfile.v0)

EXPOSE [8000/tcp]

2026-09-14 18:34:27 UTC (buildkit.dockerfile.v0)

CMD ["uv" "run" "uvicorn" "app.main:app" "--host" "0.0.0.0" "--port" "8000"]

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