You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(compose): add local infra fallback for base-builder dependency
Resolve quick-start failures when GHCR base images are unavailable by making infra containers build system-monitor locally, while preserving CI namespace/tag hardening and documenting the resilient Option 1 flow.
Fixes#114
Made-with: Cursor
run_step "Verify go-builder has system-monitor and administrator" \
82
-
"docker run --rm ghcr.io/siriusscan/sirius-base-go-builder:latest sh -c 'test -x /usr/local/bin/system-monitor && test -x /usr/local/bin/administrator'"||exit 1
90
+
"docker run --rm ${BASE_GO_BUILDER_LATEST_IMAGE} sh -c 'test -x /usr/local/bin/system-monitor && test -x /usr/local/bin/administrator'"||exit 1
83
91
84
92
run_step "Verify engine-tools has nmap, rustscan, pwsh" \
85
-
"docker run --rm ghcr.io/siriusscan/sirius-base-engine-tools:latest sh -c 'nmap --version >/dev/null && rustscan --version >/dev/null && pwsh --version >/dev/null'"||exit 1
93
+
"docker run --rm ${BASE_ENGINE_TOOLS_LATEST_IMAGE} sh -c 'nmap --version >/dev/null && rustscan --version >/dev/null && pwsh --version >/dev/null'"||exit 1
86
94
87
95
log ""
88
96
log "${YELLOW}Phase 2: Infrastructure Containers (use base images)${NC}"
0 commit comments