huangzhichao před 1 měsícem
rodič
revize
0b87dbf979
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  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