Files
awoooi/.dockerignore
Your Name 202071f7a8
Some checks failed
CD Pipeline / tests (push) Successful in 2m17s
CD Pipeline / build-and-deploy (push) Failing after 31m17s
CD Pipeline / post-deploy-checks (push) Has been skipped
chore(ci): force CD rebuild via .dockerignore touch
Empty commits don't match cd.yaml paths filter (apps/** etc).
This adds a comment to .dockerignore to trigger build for sha
84ba3216's commits stack.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-02 15:46:05 +08:00

54 lines
992 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 首席架構師 Review I1 (2026-04-05 Claude Code)
# 防止無關檔案射入 Docker build context縮短 context 傳輸時間
# 並防止 .playwright-mcp/ PNG/HTML 等大檔案造成 layer hash 不必要失效
# Git
.git
.gitignore
# CI/CD
.gitea
.github
# 開發工具
.playwright-mcp
.vscode
.idea
*.log
*.tmp
# 文件與腳本(不需要進 image
# 注意: docs/runbooks/, docs/adr/, .agents/skills/ 供 RAG 索引 (ADR-067 Phase 33)
# scripts/ 大部分不需要進 image但 CronJob 腳本需要
# 2026-04-12 ogt (ADR-073 P2-1): 白名單允許 cron_km_vectorize.py
scripts
!scripts/cron_km_vectorize.py
# Node 快取monorepo 根目錄)
node_modules
# Python 快取
__pycache__
*.pyc
*.pyo
.venv
.pytest_cache
.mypy_cache
dist
*.egg-info
# 測試結果
test-results
coverage
.coverage
# 環境變數(絕對不能進 image
.env
.env.*
apps/api/.env
apps/web/.env*
# memory/ADR不影響 build
memory
# 2026-05-02 trigger CI rebuild after runner restart