Increase pip timeout to 100s for slow network builds
This commit is contained in:
parent
4351b56a95
commit
d9231e23a0
2 changed files with 2 additions and 2 deletions
|
|
@ -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 . .
|
||||
|
||||
|
|
|
|||
|
|
@ -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/ .
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue