-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.dockerignore
More file actions
69 lines (56 loc) · 1.14 KB
/
Copy path.dockerignore
File metadata and controls
69 lines (56 loc) · 1.14 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
# =============================================================================
# usulnet .dockerignore
# Excludes files not needed in Docker build context to reduce image size
# and speed up builds.
# =============================================================================
# Version control
.git
.gitignore
# IDE and editor files
.vscode
.idea
*.swp
*.swo
*~
# Build artifacts
bin/
dist/
coverage.out
coverage.html
# CI/CD
.github/
# Documentation (not needed in runtime image)
docs/
*.md
!docker-entrypoint*.sh
# Environment files (secrets — never include in images)
.env
.env.*
!.env.example
# Development files
docker-compose.dev.yml
docker-compose.test.yml
docker-compose.override.yml
docker-compose.override.yaml
Makefile
# Test files
*_test.go
testdata/
**/*_test.go
# Project management
TASK_DEPARTMENTS.md
DEPARTMENT_BRIEFS.md
PROJECT_STATUS.md
# OS files
.DS_Store
Thumbs.db
# Temporary files
tmp/
*.tmp
*.log
# Node modules (if any — Tailwind standalone doesn't need them)
node_modules/
# Go build cache (handled by Docker layer caching)
vendor/
# Exception: self-hosted vendor assets must be included in builds
!web/static/vendor/