CoolFace
Apppublic

blacksinisterx/exploit-path-tracer-agent

sourceHugging Faceupdated 1mo agoView on Hugging Face
0likes
Dockerfile19 linesDownload Raw Back to root
1# Agent server: FastAPI + LangGraph + Semgrep. Runs on Hugging Face Spaces (Docker SDK).2FROM python:3.11-slim3 4# git is needed by semgrep's registry machinery; kept minimal otherwise.5RUN apt-get update && apt-get install -y --no-install-recommends git \6    && rm -rf /var/lib/apt/lists/*7 8WORKDIR /app9 10COPY requirements.txt .11RUN pip install --no-cache-dir -r requirements.txt12 13COPY . .14 15# HF Spaces Docker default port.16EXPOSE 786017 18CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]19