From 1aa8d011e877b8ad4a54ae22f88ee339e4d03151 Mon Sep 17 00:00:00 2001 From: SZCJW <792430652@qq.com> Date: Mon, 30 Mar 2026 23:24:08 +0800 Subject: [PATCH] x --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 13f0278..8eded85 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,9 @@ FROM rocm/vllm:rocm7.12.0_gfx120X-all_ubuntu24.04_py3.12_pytorch_2.9.1_vllm_0.16 WORKDIR /workspace COPY requirements.txt /workspace/requirements.txt -RUN pip install --no-cache-dir --retries 10 --timeout 180 -r /workspace/requirements.txt +RUN pip install --no-cache-dir --retries 20 --timeout 600 -i https://pypi.tuna.tsinghua.edu.cn/simple -r /workspace/requirements.txt \ + || pip install --no-cache-dir --retries 20 --timeout 600 -i https://mirrors.aliyun.com/pypi/simple -r /workspace/requirements.txt \ + || pip install --no-cache-dir --retries 20 --timeout 600 -r /workspace/requirements.txt COPY app /workspace/app