fix(docker): update pip install command to use Aliyun mirror for dependencies

This commit is contained in:
Hiller Liao
2025-03-29 19:35:04 +08:00
parent 4fde6385a5
commit a51a80606a

View File

@@ -8,7 +8,7 @@ WORKDIR /app
COPY . .
# 安装Python依赖
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
# 暴露端口
EXPOSE 5000