From cb4c0cc83f7ed6548e179857225736d4482342fd Mon Sep 17 00:00:00 2001 From: Huawei Date: Thu, 16 Jul 2026 02:58:31 +0000 Subject: [PATCH] fix: correct base image distribution - MinIO primary, Gitea Packages secondary --- suites-help/系统使用手册/平台架构文档.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/suites-help/系统使用手册/平台架构文档.md b/suites-help/系统使用手册/平台架构文档.md index 2d2dddd..cc51fb6 100644 --- a/suites-help/系统使用手册/平台架构文档.md +++ b/suites-help/系统使用手册/平台架构文档.md @@ -177,7 +177,20 @@ agc run --suite-id --input key=value ### 5.3 基础镜像 -`gis-base:latest` 存储在 Gitea Packages(OCI Registry),由管理员维护。内置 Python 3.11 + GDAL + Shapely + GeoPandas + numpy + openpyxl 等。 +**仓库:** `git.mercator.cn/AgentGIS/gis-base-image`(Dockerfile + 构建脚本) + +**分发渠道:** + +| 渠道 | 地址 | 用途 | +|------|------|------| +| MinIO(主) | `https://packages.mercator.cn/public/gis-base/latest.tar.gz` | 用户安装 gis-actions 时自动下载,`docker load` 加载 | +| Gitea Packages | `registry.mercator.cn/agentgis/gis-base:latest` | 构建脚本推送目标,`docker pull` | + +**预装环境:** Python 3.11 + GDAL + Shapely + GeoPandas + Fiona + Rasterio + PyProj + numpy + scipy + pandas + openpyxl + python-docx + matplotlib + Pillow + requests + Jinja2 等。 + +**构建:** 执行 `build_and_push.sh` 构建并推送到 Gitea Packages,同时导出 tar.gz 到 MinIO。 + +~465MB,Debian slim 基底。 ---