FROM python:3.12-slim WORKDIR /app RUN pip install --no-cache-dir mcp httpx redis COPY . . CMD ["python", "server.py"] EXPOSE 3200