feat: add ripgrep to Dockerfile for faster file searching (#688)

This commit is contained in:
3kin0x
2026-04-15 13:42:06 +02:00
committed by GitHub
parent 114f772a4a
commit 12dd3755c6

View File

@@ -36,8 +36,8 @@ COPY --from=build /app/node_modules/ node_modules/
COPY --from=build /app/package.json package.json
COPY README.md ./
# Install git — many CLI tool operations depend on it
RUN apt-get update && apt-get install -y --no-install-recommends git \
# Install git and ripgrep — many CLI tool operations depend on them
RUN apt-get update && apt-get install -y --no-install-recommends git ripgrep \
&& rm -rf /var/lib/apt/lists/*
# Run as non-root user