Three remaining Phase 1 P1 deliverables: 1. Dockerfile — multi-stage build (builder + production), node:18-alpine, non-root USER node, .dockerignore excluding secrets and dev artifacts 2. AGNTCY alignment docs (docs/agntcy/) — README and alignment.md mapping all 6 AGNTCY domains to AgentIdP features with Phase 2/3 pending items noted 3. Node.js SDK (@sentryagent/idp-sdk) — TypeScript strict, zero any, native fetch (Node 18+), TokenManager with 60s auto-refresh, service clients for all 14 endpoints (agents, credentials, tokens, audit), AgentIdPError typed error hierarchy, full README All three changes tracked under openspec/changes/ with tasks marked complete. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
12 lines
551 B
Markdown
12 lines
551 B
Markdown
## Why
|
|
The `docker-compose.yml` `app` service references a `Dockerfile` that does not exist. Docker containerisation is a Phase 1 P1 item. Without it, the full docker-compose stack cannot start and the DevOps deployment path is incomplete.
|
|
|
|
## What Changes
|
|
- New `Dockerfile` at project root — multi-stage build (builder + production)
|
|
- New `.dockerignore` — excludes `node_modules`, `dist`, test files, `.env`
|
|
- `docker-compose.yml` `app` service becomes fully functional
|
|
|
|
## What Does Not Change
|
|
- No source code changes
|
|
- No dependency changes
|