From 72e1f08b1811a084691eaf645e353b27626af475 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Tue, 2 Dec 2025 08:11:05 -0600 Subject: [PATCH] Apply suggestion from @NickM-27 Co-authored-by: Nicolas Mowen --- docs/docs/configuration/object_detectors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/configuration/object_detectors.md b/docs/docs/configuration/object_detectors.md index 204b55819..33c95adbf 100644 --- a/docs/docs/configuration/object_detectors.md +++ b/docs/docs/configuration/object_detectors.md @@ -1007,7 +1007,7 @@ EOF RF-DETR can be exported as ONNX by running the command below. You can copy and paste the whole thing to your terminal and execute, altering `MODEL_SIZE=Nano` in the first line to `Nano`, `Small`, or `Medium` size. ```sh -docker build . --build-arg MODEL_SIZE=Nano --output . -f- <<'EOF' +docker build . --build-arg MODEL_SIZE=Nano --rm --output . -f- <<'EOF' FROM python:3.11 AS build RUN apt-get update && apt-get install --no-install-recommends -y libgl1 && rm -rf /var/lib/apt/lists/* COPY --from=ghcr.io/astral-sh/uv:0.8.0 /uv /bin/