feat: FuzzForge AI - complete rewrite for OSS release

This commit is contained in:
AFredefon
2026-01-30 09:57:48 +01:00
commit b46f050aef
226 changed files with 12943 additions and 0 deletions

11
fuzzforge-mcp/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM docker.io/debian:trixie
ARG PACKAGE
COPY --from=ghcr.io/astral-sh/uv:0.9.10 /uv /bin/
WORKDIR /app
RUN /bin/uv venv && /bin/uv pip install --find-links /wheels $PACKAGE
CMD [ "/bin/uv", "run", "uvicorn", "fuzzforge_mcp.application:app"]