fix: 使用阿里云镜像源加速

This commit is contained in:
fuzhongyun 2026-01-28 15:06:46 +08:00
parent 0ba4800ff7
commit a5c20466a2
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ WORKDIR /app
# 安装依赖 # 安装依赖
COPY requirements.txt . COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt RUN pip install --no-cache-dir -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/
# 复制源码和字体文件 # 复制源码和字体文件
# 注意:我们将当前目录的所有内容复制到 /app # 注意:我们将当前目录的所有内容复制到 /app