-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
56 lines (45 loc) · 919 Bytes
/
Copy path.dockerignore
File metadata and controls
56 lines (45 loc) · 919 Bytes
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
# .dockerignore — Garbanzo Bot
# Keeps the Docker build context small and prevents secrets from leaking into images.
# Version control
.git
.gitignore
# Dependencies (installed fresh in the image)
node_modules
# Build artifacts (built fresh in the image)
dist
# Runtime data (mounted as volumes, not baked into image)
data
baileys_auth
# Secrets (NEVER bake into an image)
.env
.env.*
opencode.json
# IDE / editor
.vscode
.idea
*.swp
*.swo
# Docker files (not needed inside the image)
Dockerfile
docker-compose*.yml
.dockerignore
# Documentation (not needed at runtime, except persona docs loaded by the bot)
docs
!docs/PERSONA.md
!docs/personas/
!docs/personas/*.md
*.md
LICENSE
CONTRIBUTING.md
CHANGELOG.md
AGENTS.md
# Test files (not needed in production)
tests
vitest.config.*
eslint.config.*
.gitleaks.toml
# Scripts (setup/dev tooling, not needed in container)
scripts
# OS files
.DS_Store
Thumbs.db