FROM python:3.12-slim

WORKDIR /app

COPY pyproject.toml README.md LICENSE ./
COPY easyship_mcp/ easyship_mcp/

RUN pip install --no-cache-dir .

ENV MCP_TRANSPORT=streamable-http
ENV PORT=8080

EXPOSE 8080

CMD ["easyship-mcp"]
