Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions images/code/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
# rhdh-plugins monorepo:
# - corepack enabled with yarn pre-activated (avoids 10-15 min
# bootstrap inside read-only /usr sandbox)
# - pwtrace for Playwright trace analysis during E2E failure debugging
# - Node.js is already in the base image (installed by Claude Code)
#
# Yarn is available on PATH immediately — no runtime corepack setup needed.
Expand Down Expand Up @@ -43,6 +44,14 @@ RUN mkdir -p "$COREPACK_HOME" \
&& yarn --version \
&& chmod -R 777 "$COREPACK_HOME"

# ---------------------------------------------------------------------------
# pwtrace — Playwright trace analysis CLI for E2E failure debugging.
# Agents use this to inspect browser actions, DOM state, console errors,
# network requests, and screenshots from failed Playwright test traces.
# Pinned for reproducible builds; bump manually when a new release is needed.
RUN npm install -g pwtrace@0.3.0 \
&& pwtrace --version

# ---------------------------------------------------------------------------
# openspec CLI — spec-driven development tooling.
# Used by agents working on repos with openspec/ directories.
Expand Down