Increase pip timeout to 100s for slow network builds

This commit is contained in:
Lukas Parsons 2026-03-23 00:03:54 -04:00
parent 4351b56a95
commit d9231e23a0
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@ FROM python:3.11-slim
WORKDIR /app WORKDIR /app
COPY requirements.txt . COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt RUN pip install --no-cache-dir --timeout=100 -r requirements.txt
COPY . . COPY . .

View file

@ -3,7 +3,7 @@ FROM python:3.11-slim
WORKDIR /app WORKDIR /app
COPY mcp/requirements.txt . 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/ . COPY mcp/ .