-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.dockerignore
More file actions
64 lines (51 loc) · 791 Bytes
/
.dockerignore
File metadata and controls
64 lines (51 loc) · 791 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
57
58
59
60
61
62
63
64
# Git
.git
.gitignore
# IDE
.idea
.vscode
*.swp
*.swo
# Documentation markdown files (not needed in container)
*.md
!README.md
# Note: docs/ directory is needed for Swagger API documentation
docs/images/
# Build artifacts
bin/
web-cli
*.exe
# Development files
.env
.env.*
!.env.example
# Test files
*_test.go
testdata/
test.sh
# Data files (should be mounted as volumes)
data/
*.db
.encryption_key
.web-cli-credentials
.web-cli.pid
# Frontend node_modules (we rebuild in Docker)
frontend/node_modules/
frontend/dist/
# Serena/Claude config
.serena/
.claude/
# OS files
.DS_Store
Thumbs.db
# Temporary files
tmp/
*.tmp
*.log
# Docker compose (not needed inside container)
docker-compose*.yml
Dockerfile*
# GitHub
.github/
# License (optional, can be included if needed)
LICENSE