FROM python:3.12-slim ENV PYTHONDONTWRITEBYTECODE=1 ENV PYTHONUNBUFFERED=1 WORKDIR /app COPY mcp/requirements.txt /app/mcp/requirements.txt RUN pip install --no-cache-dir -r /app/mcp/requirements.txt COPY . /app CMD ["python", "/app/mcp/server.py"]