|
@@ -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
|