From 1e438164c1903f43530f74ce3d26b1912653d6f8 Mon Sep 17 00:00:00 2001 From: wuyongtao Date: Tue, 21 Jul 2026 12:45:47 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=9B=B4=E6=96=B0=20Dockerfile.backend?= =?UTF-8?q?=20=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude --- docker/app/Dockerfile.backend | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/app/Dockerfile.backend b/docker/app/Dockerfile.backend index 4367cb0..1f03dca 100644 --- a/docker/app/Dockerfile.backend +++ b/docker/app/Dockerfile.backend @@ -7,8 +7,8 @@ ENV PYTHONDONTWRITEBYTECODE=1 \ WORKDIR /app COPY backend/requirements.txt /tmp/requirements.txt -RUN pip install --upgrade pip \ - && pip install -r /tmp/requirements.txt \ +RUN pip install --upgrade pip -i https://pypi.tuna.tsinghua.edu.cn/simple \ + && pip install -r /tmp/requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple \ && rm -f /tmp/requirements.txt RUN python -c "import fastapi, uvicorn, psycopg, sqlalchemy, redis, jwt, passlib, httpx, alembic; print('backend dependency check ok')"