FROM python:3.12-slim

WORKDIR /app
COPY pyproject.toml README.md ./
COPY reminderit_mcp/ ./reminderit_mcp/
RUN pip install --no-cache-dir .

ENV REMINDERIT_API_URL=https://api.reminderit.com
EXPOSE 8080

CMD ["reminderit-mcp", "http"]
