From 33eedcf5eba940231295f153b52bc334489fe1ab Mon Sep 17 00:00:00 2001 From: Stan Girard Date: Wed, 14 Feb 2024 20:16:04 -0800 Subject: [PATCH] Increase pip install timeout to 20000 --- backend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index b92cbe653..5adab63eb 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -41,7 +41,7 @@ COPY ./requirements.txt . RUN pip install --upgrade pip # Increase timeout to wait for the new installation -RUN pip install --no-cache-dir -r requirements.txt --timeout 200 +RUN pip install --no-cache-dir -r requirements.txt --timeout 20000 RUN if [ "$DEV_MODE" = "true" ]; then pip install --no-cache debugpy --timeout 200; fi