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

# Set working directory
WORKDIR /app

# Copy project files
COPY pyproject.toml README.md ./
COPY src ./src

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

# Use the console script
ENTRYPOINT ["mcp-keycloak"]