Skip to main content
Glama
Dockerfile.integration-tests•948 B
# Integration Tests Dockerfile FROM python:3.11-slim # Set environment variables ENV PYTHONPATH=/app/packages/shared:/app ENV PYTHONUNBUFFERED=1 ENV DEBIAN_FRONTEND=noninteractive # Install system dependencies RUN apt-get update && apt-get install -y \ build-essential \ curl \ git \ postgresql-client \ redis-tools \ docker.io \ && rm -rf /var/lib/apt/lists/* # Create app directory WORKDIR /app # Copy project files COPY . /app/ # Install Python dependencies RUN pip install --no-cache-dir -r packages/shared/tests/integration/requirements-test.txt # Install shared package in development mode RUN pip install -e packages/shared/ # Create test results directory RUN mkdir -p /app/test_results # Create non-root user for security RUN useradd -m -u 1000 testuser && \ chown -R testuser:testuser /app USER testuser # Default command CMD ["python", "-m", "pytest", "packages/shared/tests/integration/", "-v"]

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/luxiaolei/tiger-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server