From 199edb228c3a2b4a48a3bdb582baf18c33507bc6 Mon Sep 17 00:00:00 2001 From: didericis Date: Tue, 9 Jun 2026 06:26:19 -0400 Subject: [PATCH] feat(pi): add fd and ripgrep to image --- bot_bottle/contrib/pi/Dockerfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/bot_bottle/contrib/pi/Dockerfile b/bot_bottle/contrib/pi/Dockerfile index af91faa..7f7e501 100644 --- a/bot_bottle/contrib/pi/Dockerfile +++ b/bot_bottle/contrib/pi/Dockerfile @@ -5,7 +5,13 @@ FROM node:22-slim 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 \ + fd-find \ + ripgrep \ + && ln -s /usr/bin/fdfind /usr/local/bin/fd \ && rm -rf /var/lib/apt/lists/* RUN apt-get update \