Преглед изворни кода

Fix: PIP change to China mirror

iaun пре 3 месеци
родитељ
комит
ca021f8734
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      Dockerfile

+ 1 - 1
Dockerfile

@@ -26,7 +26,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
 
 # Install Python dependencies
 COPY backend/requirements.txt ./
-RUN pip -i https://pypi.tuna.tsinghua.edu.cn/simple install --no-cache-dir -r requirements.txt
+RUN pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --no-cache-dir -r requirements.txt
 
 # Copy backend code
 COPY backend/ ./