Ver Fonte

feat: 更新pip

huangzhichao há 1 dia atrás
pai
commit
0b87dbf979
1 ficheiros alterados com 2 adições e 1 exclusões
  1. 2 1
      Dockerfile

+ 2 - 1
Dockerfile

@@ -16,7 +16,8 @@ WORKDIR /app
 
 # Install Python deps first (better layer caching)
 COPY requirements.txt .
-RUN pip install -r requirements.txt
+RUN pip install --no-cache-dir --upgrade pip -i https://pypi.tuna.tsinghua.edu.cn/simple/
+RUN pip install --no-cache-dir -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple/
 
 # Copy source
 COPY app ./app