From 0ccec1920646dea1d74d3e988b5badb89ffa4b61 Mon Sep 17 00:00:00 2001 From: clawsweeper <274271284+clawsweeper[bot]@users.noreply.github.com> Date: Tue, 19 May 2026 01:53:04 +0000 Subject: [PATCH] docker: support optional pip packages in local builds MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Stephen Redmond - Straitéis AI <244375177+stephenredmond-straiteis@users.noreply.github.com> Co-authored-by: clawsweeper[bot] <274271284+clawsweeper[bot]@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8dc287b2bf21..e85a49c649ff 100644 --- a/Dockerfile +++ b/Dockerfile @@ -210,7 +210,7 @@ RUN --mount=type=cache,id=openclaw-bookworm-apt-cache,target=/var/cache/apt,shar DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends $packages; \ fi -# Install additional Python packages needed by your skills or plugins. +# Install additional Python packages needed by your plugins or skills. # Example: docker build --build-arg OPENCLAW_IMAGE_PIP_PACKAGES="requests humanize" . ARG OPENCLAW_IMAGE_PIP_PACKAGES="" RUN --mount=type=cache,id=openclaw-bookworm-apt-cache,target=/var/cache/apt,sharing=locked \