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

# Set working directory
WORKDIR /app

# Copy project files
COPY . /app

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

# Use non-root user (optional)
# RUN useradd -m appuser && chown -R appuser /app
# USER appuser

# Default command
CMD ["mongo-mcp"]
