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/ .