From d9231e23a0232f2b4ab8e3339526af6e63111b64 Mon Sep 17 00:00:00 2001 From: Lukas Parsons Date: Mon, 23 Mar 2026 00:03:54 -0400 Subject: [PATCH] Increase pip timeout to 100s for slow network builds --- Dockerfile | 2 +- mcp/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0bd68b9..c7567d1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM python:3.11-slim WORKDIR /app COPY requirements.txt . -RUN pip install --no-cache-dir -r requirements.txt +RUN pip install --no-cache-dir --timeout=100 -r requirements.txt COPY . . diff --git a/mcp/Dockerfile b/mcp/Dockerfile index de7b3ac..246367c 100644 --- a/mcp/Dockerfile +++ b/mcp/Dockerfile @@ -3,7 +3,7 @@ FROM python:3.11-slim WORKDIR /app COPY mcp/requirements.txt . -RUN pip install --no-cache-dir -r requirements.txt +RUN pip install --no-cache-dir --timeout=100 -r requirements.txt COPY mcp/ .