From 731826f966a15016edda2cd42b04b7e7886f5c5b Mon Sep 17 00:00:00 2001 From: codex Date: Thu, 25 Jun 2026 08:23:37 +0000 Subject: [PATCH] feat: add ripgrep to agent images --- bot_bottle/contrib/claude/Dockerfile | 2 +- bot_bottle/contrib/codex/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bot_bottle/contrib/claude/Dockerfile b/bot_bottle/contrib/claude/Dockerfile index 00e9955..16b72b9 100644 --- a/bot_bottle/contrib/claude/Dockerfile +++ b/bot_bottle/contrib/claude/Dockerfile @@ -21,7 +21,7 @@ FROM node:22-slim # to it) works against egress's bumped TLS without the agent needing # local DNS. RUN apt-get update \ - && apt-get install -y --no-install-recommends git ca-certificates curl \ + && apt-get install -y --no-install-recommends git ca-certificates curl ripgrep \ && rm -rf /var/lib/apt/lists/* # App-specific deps. Python isn't required by claude-code itself diff --git a/bot_bottle/contrib/codex/Dockerfile b/bot_bottle/contrib/codex/Dockerfile index cabaf05..c966b8d 100644 --- a/bot_bottle/contrib/codex/Dockerfile +++ b/bot_bottle/contrib/codex/Dockerfile @@ -6,7 +6,7 @@ FROM node:22-slim RUN apt-get update \ - && apt-get install -y --no-install-recommends git ca-certificates curl procps \ + && apt-get install -y --no-install-recommends git ca-certificates curl procps ripgrep \ && rm -rf /var/lib/apt/lists/* # App-specific deps. Python isn't required by codex itself