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

# Install system dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
    build-essential \
    && rm -rf /var/lib/apt/lists/*

WORKDIR /app
# Copy project files
COPY pyproject.toml README.md ./
COPY src ./src

# Install dependencies and package
RUN pip install --no-cache-dir --upgrade pip \
    && pip install --no-cache-dir .

# Default entrypoint
ENTRYPOINT ["open-data-mcp"]
