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

WORKDIR /app

# Copy project files
COPY pyproject.toml .
COPY uv.lock .
COPY huuh_mcp ./huuh_mcp
COPY README.md .

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

# Default entrypoint
CMD ["PORT=${PORT} FASTMCP_PORT=${PORT} huuh-mcp"]
