-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
81 lines (75 loc) · 1.18 KB
/
Copy path.dockerignore
File metadata and controls
81 lines (75 loc) · 1.18 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
# Version-control and local agent metadata
.git
.gitignore
.gitattributes
.agents/
.codex/
skills-lock.json
# Dependencies, build output, caches, and test artifacts
**/node_modules/
**/.next/
**/out/
**/dist/
**/coverage/
*.tsbuildinfo
.turbo/
.cache/
# Runtime configuration and secrets must be injected when the container starts
**/.env*
**/.provider-config.local.json
**/.provider-config*.local.json
**/.npmrc
**/.yarnrc.yml
**/.netrc
**/.ssh/
**/*.pem
**/*.key
**/*.p12
**/*.pfx
**/*.crt
**/*.cer
**/*.jks
**/id_rsa*
**/id_ed25519*
# Certificates stay on the host and are mounted read-only by Compose
nginx/ssl/*
!nginx/ssl/.gitkeep
certbot/
# Operational scripts and local data are never part of the application image
_scripts/
deploy*.js
deploy.sh
docker-compose.override*.yml
data/
ai-optimizer/
# Backups, archives, logs, and editor files
**/backups/
**/backup/
*.bak
*.backup
*.old
*.orig
*.tmp
*.swp
*~
**/*.sql.gz
**/*.sql
**/*.dump
**/*.sqlite
**/*.sqlite3
**/*.db
**/*.tgz
**/*.tar
**/*.zip
**/*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# Documentation and local tooling are not needed in the runtime image
docs/
DEPLOY.md
.vscode/
.idea/
.DS_Store
Thumbs.db