From cabf02e7b9310f7ae57ad67c1db66959ffaf1bc9 Mon Sep 17 00:00:00 2001 From: "jason.woltje" Date: Fri, 17 Jul 2026 18:11:16 +0000 Subject: [PATCH] ci: bake git into the prebuilt test image (#819) --- Dockerfile.ci | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile.ci b/Dockerfile.ci index 4bb9d7a..4126b9a 100644 --- a/Dockerfile.ci +++ b/Dockerfile.ci @@ -23,9 +23,9 @@ FROM node:24-alpine # Native toolchain required to compile node-gyp deps on musl, plus the # postgresql-client used by the test step's pg_isready readiness probe. `bash` -# is baked here too — the sanitization step in ci.yml otherwise does a per-run -# `apk add bash`. -RUN apk add --no-cache python3 make g++ postgresql-client bash +# and `git` are baked here too — framework shell tests require both without +# paying for per-run package installation in ci.yml. +RUN apk add --no-cache python3 make g++ postgresql-client bash git # Pin pnpm to the repo's packageManager version via corepack. RUN corepack enable && corepack prepare pnpm@10.6.2 --activate