Skip to main content
Glama
Dockerfile763 B
FROM python:3.12-slim WORKDIR /app # Install system dependencies including git for version tracking RUN apt-get update && apt-get install -y \ gcc \ curl \ sshpass \ git \ && rm -rf /var/lib/apt/lists/* # Copy requirements and install Python dependencies COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Copy application code COPY . . # Capture git commit hash at build time ARG GIT_COMMIT=unknown RUN echo "$GIT_COMMIT" > /app/.git_commit # Create directories for logs and data RUN mkdir -p /app/logs /app/data # Make entrypoint executable RUN chmod +x /app/entrypoint.sh # Expose ports for OAuth (8000), MCP (8001), Booking (8081) EXPOSE 8000 8001 8081 # Run entrypoint script CMD ["/app/entrypoint.sh"]

Latest Blog Posts

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/ilvolodel/iris-legacy'

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