Loading ai_agent/Dockerfile +1 −1 Original line number Diff line number Diff line FROM python:3.11-slim FROM python:3.12-slim ENV APP_HOST=0.0.0.0 ENV APP_PORT=9013 Loading ai_agent/requirements.txt +2 −2 Original line number Diff line number Diff line Loading @@ -2,6 +2,6 @@ langchain_groq==1.1.3 mcp_use==1.7.0 objgraph==3.6.2 python-dotenv==1.2.1 fastapi==0.118.0 uvicorn==0.37.0 fastapi==0.129.0 uvicorn==0.40.0 redis==5.2.1 mcp_module/Dockerfile +2 −2 Original line number Diff line number Diff line FROM python:3.11-slim FROM python:3.12-slim # Set work directory WORKDIR /app Loading @@ -7,7 +7,7 @@ WORKDIR /app COPY requirements.txt . # Install dependencies RUN pip install --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host=files.pythonhosted.org --default-timeout=120 --no-cache-dir -r requirements.txt RUN pip install --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host=files.pythonhosted.org --no-cache-dir -r requirements.txt # Copy the rest of the app COPY . /app/mcp_module Loading Loading
ai_agent/Dockerfile +1 −1 Original line number Diff line number Diff line FROM python:3.11-slim FROM python:3.12-slim ENV APP_HOST=0.0.0.0 ENV APP_PORT=9013 Loading
ai_agent/requirements.txt +2 −2 Original line number Diff line number Diff line Loading @@ -2,6 +2,6 @@ langchain_groq==1.1.3 mcp_use==1.7.0 objgraph==3.6.2 python-dotenv==1.2.1 fastapi==0.118.0 uvicorn==0.37.0 fastapi==0.129.0 uvicorn==0.40.0 redis==5.2.1
mcp_module/Dockerfile +2 −2 Original line number Diff line number Diff line FROM python:3.11-slim FROM python:3.12-slim # Set work directory WORKDIR /app Loading @@ -7,7 +7,7 @@ WORKDIR /app COPY requirements.txt . # Install dependencies RUN pip install --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host=files.pythonhosted.org --default-timeout=120 --no-cache-dir -r requirements.txt RUN pip install --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host=files.pythonhosted.org --no-cache-dir -r requirements.txt # Copy the rest of the app COPY . /app/mcp_module Loading