From bba3457ce8b963ca4c8e84ff4edbf675b8ab29f0 Mon Sep 17 00:00:00 2001 From: samiabat Date: Mon, 28 Jul 2025 18:30:47 +0300 Subject: [PATCH] add option to try again --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4e5a9dbb..5b5415be 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && \ # Copy only requirements.txt initially to leverage Docker cache WORKDIR /workspace COPY requirements.txt /workspace/ -RUN CMAKE_POLICY_VERSION_MINIMUM=3.5 pip install --no-cache-dir -r requirements.txt +RUN CMAKE_POLICY_VERSION_MINIMUM=3.5 pip install --timeout 300 --retries 10 --no-cache-dir -r requirements.txt # Define a build-time argument for image type ARG IMAGE_TYPE=full