fix: Update Dockerfile and release workflow to use GitHub mirror instead of Gitee (#15700)

### What problem does this PR solve?

Update Dockerfile and release workflow to use GitHub mirror instead of
Gitee

### Type of change

- [x] Other (please describe): CI
This commit is contained in:
Liu An
2026-06-05 16:10:52 +08:00
committed by GitHub
parent f78ef328bb
commit aab01af6f2
2 changed files with 2 additions and 1 deletions

View File

@@ -146,6 +146,7 @@ RUN --mount=type=cache,id=ragflow_uv,target=/root/.cache/uv,sharing=locked \
sed -i 's|pypi.org|mirrors.aliyun.com/pypi|g' uv.lock; \
else \
sed -i 's|mirrors.aliyun.com/pypi|pypi.org|g' uv.lock; \
sed -i 's|gitee.com|github.com|g' uv.lock; \
fi; \
uv sync --python 3.13 --frozen && \
# Ensure pip is available in the venv for runtime package installation (fixes #12651)