# Generated by https://smithery.ai. See: https://smithery.ai/docs/build/project-config
FROM python:3.11-slim

# Set working directory
WORKDIR /app

# Copy dependency definitions
COPY requirements.txt ./

# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt

# Copy application code
COPY libralm_mcp_server.py ./

# Expose no HTTP port since this is a stdio service

# Default command (overridden by MCP hosting)
CMD ["python", "libralm_mcp_server.py"]
