From d8dc09608345d6c69f817c48a81853b7ea969c85 Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Fri, 17 Jul 2026 13:39:23 -0500 Subject: [PATCH] feat(#795): bake jq into CI base image --- 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