-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.dockerignore
More file actions
56 lines (46 loc) · 819 Bytes
/
.dockerignore
File metadata and controls
56 lines (46 loc) · 819 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
# Version control
.git
.gitignore
.gitattributes
# Docker artifacts (don't recurse into the build context)
# NOTE: docker-entrypoint.sh is NOT ignored — it is copied into the image.
Dockerfile
docker-compose.yml
.dockerignore
# Secrets and env — never ship to the image
.env
.env.local
.env.*.local
# Local build outputs
bin/
dist/
build/
server
main
migrate
# VCP planning + claude tooling (not needed at build time)
.vcp/
.claude/
# Docs and licensing (keep out of the build context to speed it up;
# the binary is self-contained)
README.md
LICENSE
# Tests (not compiled into cmd/server or cmd/migrate binaries)
tests/
# IDE
.vscode/
.idea/
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
# Logs and temp
logs/
*.log
tmp/
temp/
*.tmp
# Node artifacts (none expected, but mirror .gitignore)
node_modules/
bun.lockb