mirror of
https://github.com/FuzzingLabs/fuzzforge_ai.git
synced 2026-02-12 17:12:46 +00:00
12 lines
247 B
Docker
12 lines
247 B
Docker
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"]
|