FROM python:3.10-slim

WORKDIR /app

COPY . .

RUN pip install .

ENV MIQA_MCP_TRANSPORT=http
ENV PORT=8000

CMD ["miqa-mcp"]
