097a5a9613
ci-arm64-advisory / fast-checks (pull_request) Waiting to run
Block internal-flavored paths / Block forbidden paths (pull_request) Successful in 7s
CI / Python Lint & Test (pull_request) Successful in 8s
E2E API Smoke Test / detect-changes (pull_request) Successful in 8s
E2E Chat / detect-changes (pull_request) Successful in 7s
CI / Detect changes (pull_request) Successful in 12s
Harness Replays / detect-changes (pull_request) Successful in 7s
Lint curl status-code capture / Scan workflows for curl status-capture pollution (pull_request) Successful in 5s
Lint forbidden tenant-env keys / Scan workspace_secrets writers for forbidden env keys (pull_request) Successful in 5s
Check migration collisions / Migration version collision check (pull_request) Successful in 24s
E2E Staging Canvas (Playwright) / detect-changes (pull_request) Successful in 16s
Handlers Postgres Integration / detect-changes (pull_request) Successful in 15s
Lint forbidden tenant-env keys / Scan for repo-host token write into tenant workspace surface (pull_request) Successful in 17s
Lint shellcheck (arm64 pilot) / shellcheck-arm64 (pilot) (pull_request) Successful in 15s
E2E Chat / E2E Chat (pull_request) Successful in 31s
lint-required-workflows-docker-host-pinned / Lint docker-host pin on docker-touching workflows (pull_request) Successful in 30s
CI / Shellcheck (E2E scripts) (pull_request) Successful in 13s
Lint pre-flip continue-on-error / Verify continue-on-error flips have run-log proof (pull_request) Successful in 1m0s
lint-required-context-exists-in-bp / lint-required-context-exists-in-bp (pull_request) Failing after 1m0s
E2E API Smoke Test / E2E API Smoke Test (pull_request) Successful in 57s
lint-required-no-paths / lint-required-no-paths (pull_request) Successful in 1m3s
Harness Replays / Harness Replays (pull_request) Successful in 3s
Secret scan / Scan diff for credential-shaped strings (pull_request) Successful in 9s
qa-review / approved (pull_request_target) Failing after 11s
security-review / approved (pull_request_target) Failing after 10s
gate-check-v3 / gate-check (pull_request_target) Successful in 14s
sop-checklist / all-items-acked (pull_request) acked: 0/7 — missing: comprehensive-testing, local-postgres-e2e, staging-smoke, +4 — body-unfilled: comprehensive-testing, local-postgres-e2
sop-checklist / na-declarations (pull_request) N/A: (none)
sop-checklist / review-refire (pull_request_target) Has been skipped
sop-checklist / all-items-acked (pull_request_target) Successful in 8s
E2E Staging Canvas (Playwright) / Canvas tabs E2E (pull_request) Successful in 2s
sop-tier-check / tier-check (pull_request_target) Failing after 6s
lint-continue-on-error-tracking / lint-continue-on-error-tracking (pull_request) Failing after 1m40s
E2E Peer Visibility (literal MCP list_peers) / E2E Peer Visibility (local) (pull_request) Successful in 2m13s
E2E Peer Visibility (literal MCP list_peers) / E2E Peer Visibility (pull_request) Has been skipped
Handlers Postgres Integration / Handlers Postgres Integration (pull_request) Successful in 1m6s
Local Provision Lifecycle E2E / Local Provision Lifecycle E2E (stub) (pull_request) Failing after 2m9s
Lint workflow YAML (Gitea-1.22.6-hostile shapes) / Lint workflow YAML for Gitea-1.22.6-hostile shapes (pull_request) Successful in 2m14s
CI / Platform (Go) (pull_request) Successful in 6m57s
Local Provision Lifecycle E2E / Local Provision Lifecycle E2E (real image, advisory) (pull_request) Failing after 6m58s
CI / Canvas (Next.js) (pull_request) Successful in 7m41s
CI / Canvas Deploy Status (pull_request) Successful in 2s
CI / all-required (pull_request) Successful in 2s
E2E Staging External Runtime / E2E Staging External Runtime (pull_request) Has been cancelled
E2E Staging SaaS (full lifecycle) / pr-validate (pull_request) Has been cancelled
E2E Staging SaaS (full lifecycle) / E2E Staging SaaS (pull_request) Has been cancelled
E2E Staging SaaS (full lifecycle) / E2E Staging Platform Boot (pull_request) Has been cancelled
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
34 lines
1.6 KiB
Docker
34 lines
1.6 KiB
Docker
# Tiny stub runtime image for the local Docker-provisioner lifecycle e2e.
|
|
#
|
|
# It impersonates a real workspace runtime's platform contract (register +
|
|
# heartbeat + A2A message/send) with ZERO LLM/SDK weight so the lifecycle e2e
|
|
# (provision -> online -> restart-survive -> proxy-reach) runs in seconds and
|
|
# without the 2.5GB real claude-code image.
|
|
#
|
|
# Resolution trick (see tests/e2e/test_local_provision_lifecycle_e2e.sh):
|
|
# the local provisioner resolves runtime=claude-code via RegistryModeLocal,
|
|
# which is a `docker image inspect` cache-check on
|
|
# molecule-local/workspace-template-claude-code:<gitea-HEAD-sha12>
|
|
# BEFORE it clones+builds. Pre-tagging THIS image to that exact cache tag makes
|
|
# the provisioner cache-hit the stub instead of building the real template.
|
|
#
|
|
# linux/amd64: the provisioner forces --platform=linux/amd64 for every workspace
|
|
# container (defaultImagePlatform, #1875) for parity with the amd64-only prod
|
|
# images. Build the stub amd64 too so the platforms match and Docker doesn't
|
|
# refuse the create with a manifest mismatch.
|
|
FROM --platform=linux/amd64 python:3.12-alpine
|
|
|
|
# /configs is the named-volume mount point the provisioner attaches
|
|
# (ws-<id>-configs:/configs). The real entrypoint chowns it; the stub just
|
|
# needs the dir to exist so a missing-mount never trips it up.
|
|
RUN mkdir -p /configs /workspace
|
|
|
|
WORKDIR /app
|
|
COPY server.py /app/server.py
|
|
|
|
EXPOSE 8000
|
|
|
|
# No gosu/agent-uid drop here — the stub does no privileged work and the e2e
|
|
# only cares about the platform contract, not the agent-uid security posture.
|
|
ENTRYPOINT ["python3", "/app/server.py"]
|