From a51a80606a4148224867f9f77e5411fe99ac4d5e Mon Sep 17 00:00:00 2001 From: Hiller Liao Date: Sat, 29 Mar 2025 19:35:04 +0800 Subject: [PATCH] fix(docker): update pip install command to use Aliyun mirror for dependencies --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0537015..48b11b5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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