-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
92 lines (77 loc) · 1.24 KB
/
.dockerignore
File metadata and controls
92 lines (77 loc) · 1.24 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
82
83
84
85
86
87
88
89
90
91
92
# =============================================================================
# Monorepo Docker Ignore
# Used when building from repository root (e.g., web app)
# =============================================================================
# Dependencies
**/node_modules/
# Build artifacts
**/.next/
**/out/
**/build/
**/dist/
**/target/
**/_build/
**/deps/
# Version control
.git
.gitignore
.gitattributes
# IDE and editors
.idea/
.vscode/
*.swp
*.swo
.cursor/
# Documentation (but keep content for blogs)
*.md
!README.md
!**/content/**
# Test artifacts
**/coverage/
**/.nyc_output/
**/__tests__/
**/*.test.ts
**/*.test.tsx
**/*.spec.ts
**/*.spec.tsx
**/test-results/
**/playwright-report/
# Environment files
.env*
!.env.example
# OS files
.DS_Store
Thumbs.db
# Logs
*.log
# Local development
**/.turbo/
**/tsconfig.tsbuildinfo
**/*.tsbuildinfo
# Rust specific
**/*.rs.bk
# Elixir specific
**/.elixir_ls/
**/*.beam
**/erl_crash.dump
# Go specific
**/*.exe
**/*.dll
**/*.so
**/*.dylib
# CI/CD and docs
.github/
docs/
deploy/
scripts/
# Tooling - exclude contents but keep Cargo.toml for workspace builds
tooling/**
!tooling/typescript/
!tooling/e2e/package.json
!tooling/performance/Cargo.toml
*.yml
*.yaml
!**/fly.toml
Makefile
biome.json
turbo.json