# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
# Use an official Python image based on Debian
FROM python:3.13-slim

# Set the working directory in the container
WORKDIR /app

# Copy the project files
COPY . .

# Install dependencies using pip
RUN pip install --no-cache-dir .

# Command to run the MCP server (will be overridden by smithery.yaml, but good for local testing)
CMD ["python", "src/goatcounter_mcp_server/main.py"]
