# Open Parlamento — agente legge+dati (HTTP :8077)
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY agent.py connectors.py mcp_server.py ./
EXPOSE 8077
# GOOGLE_API_KEY e LIGHTRAG_URL vanno passati come env (vedi docker-compose.deploy.yml)
CMD ["python", "agent.py"]
