Эх сурвалжийг харах

fix: Dockerfile 添加 Playwright Chromium 国内镜像源

kinglee 1 долоо хоног өмнө
parent
commit
a7e5880eb2
1 өөрчлөгдсөн 5 нэмэгдсэн , 1 устгасан
  1. 5 1
      Dockerfile

+ 5 - 1
Dockerfile

@@ -10,16 +10,20 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
 
 COPY pyproject.toml uv.lock ./
 
-# 配置 pip 和 uv 使用阿里云镜像,使用系统 Python
+# 配置 pip/uv 使用阿里云镜像,Playwright 使用 npmmirror 镜像,使用系统 Python
 ENV PIP_INDEX_URL=https://mirrors.aliyun.com/pypi/simple/
 ENV UV_INDEX_URL=https://mirrors.aliyun.com/pypi/simple/
 ENV UV_PYTHON_PREFERENCE=system
+ENV PLAYWRIGHT_DOWNLOAD_HOST=https://npmmirror.com/mirrors/playwright/
 
 RUN pip install --no-cache-dir uv && \
     uv sync --frozen --no-dev
 
 COPY . .
 
+# 安装 Playwright Chromium 浏览器(Crawl4AI 依赖)
+RUN playwright install chromium
+
 RUN chmod +x entrypoint.sh
 ENTRYPOINT ["./entrypoint.sh"]