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

# Set working directory
WORKDIR /app

# Copy all files
COPY . /app

# Install build dependencies
RUN pip install --upgrade pip \
    && pip install --no-cache-dir .

# Expose a port if needed, though MCP usually uses stdio
# EXPOSE 8000

# Command to run the MCP server
CMD ["youtubeinsights-mcp-server"]
