# Build from source (works before and after PyPI publishing)
FROM python:3.12-slim

WORKDIR /app
COPY . .

RUN pip install --no-cache-dir .

ENTRYPOINT ["mcp-glm-ocr"]
