-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
93 lines (81 loc) · 1.09 KB
/
.dockerignore
File metadata and controls
93 lines (81 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# Used as build context for apps/web/Dockerfile (context = repo root)
# Python (api app — not needed in web image)
apps/api
!apps/api/package.json
**/__pycache__
**/*.pyc
**/*.pyo
**/*.pyd
**/.venv
**/.pytest_cache
**/.ruff_cache
**/.mypy_cache
**/.pyrefly_cache
# Node / build outputs
node_modules
**/node_modules
.next
**/.next
out
dist
**/dist
# Logs and runtime data
logs
*.log
**/*.log
apps/api/logs
apps/api/content
apps/api/temp-restore
apps/api/backups
# Cache directories
.cache
.npm
.eslintcache
.nyc_output
**/*.tsbuildinfo
**/.eslintcache
# Coverage
coverage
*.lcov
.coverage
htmlcov/
coverage.xml
# Temporary files
tmp/
temp/
*.tmp
# IDE / OS
.vscode
.idea
*.swp
*.swo
.DS_Store
Thumbs.db
# Git
.git
.gitignore
**/.gitignore
.gitattributes
.github
# Docker files (not needed inside images)
**/Dockerfile
**/.dockerignore
docker-compose.yml
compose.prod.yml
# Documentation
README.md
docs/
*.md
# Secrets / env (never bake into images)
extra/.env
extra/backup.env
apps/web/.env
apps/web/.env.*
# Backups and test artefacts
backups/
temp-restore/
junit.xml
test-results/
plans/
.claude/
.turbo/