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

# Set work directory
WORKDIR /app

# Copy application code
COPY src/ src/
COPY pyproject.toml .

# Install dependencies
RUN pip install --no-cache-dir mcp requests python-dotenv pydantic

# Expose no ports (uses stdio)

# Default command to run the MCP server
CMD ["python", "src/dooray-mcp-server.py"]
