From 94a679a4c33a69a90359b7f3254f17e3783ef04e Mon Sep 17 00:00:00 2001 From: Dan Childers Date: Fri, 17 Jul 2026 13:40:16 -0400 Subject: [PATCH] Add ripgrep to linux universal base image --- containers/Containerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/containers/Containerfile b/containers/Containerfile index 7ac1f211..bfcb79ba 100644 --- a/containers/Containerfile +++ b/containers/Containerfile @@ -13,6 +13,11 @@ LABEL org.opencontainers.image.title="Forge Development Sandbox" LABEL org.opencontainers.image.description="AI-powered development environment for Forge SDLC orchestrator" LABEL org.opencontainers.image.source="https://github.com/your-org/forge" +# Install system packages +RUN apt-get update && apt-get install -y --no-install-recommends \ + ripgrep \ + && rm -rf /var/lib/apt/lists/* + # Install Deep Agents and dependencies # Using pip as the universal image has Python pre-installed RUN pip install --no-cache-dir \