From fe7a468c9da23b7ce7961ec3231f8e5f952e29de Mon Sep 17 00:00:00 2001 From: "jason.woltje" Date: Fri, 17 Jul 2026 19:12:43 +0000 Subject: [PATCH] ci: bake jq into the prebuilt test image (#821) --- Dockerfile.ci | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile.ci b/Dockerfile.ci index 4126b9a..c5b0be7 100644 --- a/Dockerfile.ci +++ b/Dockerfile.ci @@ -22,10 +22,10 @@ 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` -# 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 +# postgresql-client used by the test step's pg_isready readiness probe. `bash`, +# `git`, and `jq` are baked here too — framework shell tests and the shipped +# Codex review wrappers require them without per-run installation in ci.yml. +RUN apk add --no-cache python3 make g++ postgresql-client bash git jq # Pin pnpm to the repo's packageManager version via corepack. RUN corepack enable && corepack prepare pnpm@10.6.2 --activate