From 380496bec142aa1322b85ad6e597bcff59a62f7f Mon Sep 17 00:00:00 2001 From: Tomas Prokop Date: Thu, 25 Jun 2026 17:59:06 +0200 Subject: [PATCH 1/2] fix: add ripgrep (rg) to base image for VS Code and Copilot file search Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- src/images/power-platform/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/images/power-platform/Dockerfile b/src/images/power-platform/Dockerfile index 3f6595b..9d1c391 100644 --- a/src/images/power-platform/Dockerfile +++ b/src/images/power-platform/Dockerfile @@ -8,7 +8,7 @@ ENV DEBIAN_FRONTEND=noninteractive # ── Base system dependencies ────────────────────────────────────────────────── RUN apt-get update && apt-get install -y --no-install-recommends \ - curl wget git zip unzip jq ca-certificates gnupg lsb-release \ + curl wget git zip unzip jq ca-certificates gnupg lsb-release ripgrep \ apt-transport-https software-properties-common \ sudo procps \ && rm -rf /var/lib/apt/lists/* From 59188ebd4ab82791a715ef7b9a1278a8831cbdff Mon Sep 17 00:00:00 2001 From: Tomas Prokop Date: Thu, 25 Jun 2026 18:02:25 +0200 Subject: [PATCH 2/2] feat: add coding agent tools (fd, bat, delta, fzf, tree, xdg-utils, less, file) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- src/images/power-platform/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/images/power-platform/Dockerfile b/src/images/power-platform/Dockerfile index 9d1c391..d5c6537 100644 --- a/src/images/power-platform/Dockerfile +++ b/src/images/power-platform/Dockerfile @@ -8,7 +8,8 @@ ENV DEBIAN_FRONTEND=noninteractive # ── Base system dependencies ────────────────────────────────────────────────── RUN apt-get update && apt-get install -y --no-install-recommends \ - curl wget git zip unzip jq ca-certificates gnupg lsb-release ripgrep \ + curl wget git zip unzip jq ca-certificates gnupg lsb-release \ + ripgrep fd-find bat delta fzf tree xdg-utils less file \ apt-transport-https software-properties-common \ sudo procps \ && rm -rf /var/lib/apt/lists/*