Commit 341902f1 authored by Kostas Chartsias's avatar Kostas Chartsias
Browse files

fix: Docker base images

parent 9eb7084c
Loading
Loading
Loading
Loading
Loading
+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
+2 −2
Original line number Diff line number Diff line
@@ -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
+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
@@ -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