Archive dockerfile, agntcy-alignment-docs, and nodejs-sdk changes now that implementation is complete and pushed to develop. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
570 B
570 B
1. Dockerfile
- 1.1 Write multi-stage Dockerfile: builder stage (node:18-alpine, npm ci, npm run build)
- 1.2 Write production stage: node:18-alpine, npm ci --omit=dev, copy dist/, USER node
- 1.3 Set EXPOSE 3000, CMD ["node", "dist/server.js"]
2. .dockerignore
- 2.1 Write .dockerignore excluding: node_modules, dist, coverage, tests, .env, *.pem, vj_notes, .cto-workspace, .claude, next_steps.md
3. QA
- 3.1 Verify Dockerfile build stages are correct and complete
- 3.2 Verify .dockerignore covers all sensitive/unnecessary files