Skip to main content
Glama
Dockerfile_debug1.01 kB
FROM python:3.12.10-slim WORKDIR /app # ----------------------------------------- # 시스템 패키지 (LightGBM 빌드용) # ----------------------------------------- RUN apt-get update \ && apt-get install -y --no-install-recommends \ build-essential \ cmake \ git \ && rm -rf /var/lib/apt/lists/* # ----------------------------------------- # Python 패키지 설치 # ----------------------------------------- COPY requirements.txt /app/requirements.txt RUN pip install --upgrade pip \ && pip install --no-cache-dir -r requirements.txt \ && pip install --no-cache-dir debugpy # ----------------------------------------- # 애플리케이션 복사 # ----------------------------------------- COPY app /app # ----------------------------------------- # VSCode Debug + Uvicorn 실행 # ----------------------------------------- CMD ["python", "-m", "debugpy", "--listen", "0.0.0.0:5678", "--wait-for-client", "-m", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]

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/lhmpaiPublic/McpLLMServer'

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