From a6e681ddd0783e13d4dd9c9e3c219c0337d5d380 Mon Sep 17 00:00:00 2001 From: Yasien Mac Mini Date: Tue, 29 Jul 2025 12:29:05 +0200 Subject: [PATCH] increase pip time out --- backend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index 5e940a58..dfd1da3d 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -5,7 +5,7 @@ WORKDIR /app COPY requirements.txt ./ RUN --mount=type=cache,target=/root/.cache/pip \ - pip install -r requirements.txt + pip --default-timeout=120 install -r requirements.txt # COPY . ./app