-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.dockerignore
More file actions
55 lines (47 loc) · 1.01 KB
/
.dockerignore
File metadata and controls
55 lines (47 loc) · 1.01 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
# ==============================================================================
# .dockerignore - Reduces Docker build context size
# ==============================================================================
# Applied when build context is the repo root (used by both dev and CI Dockerfiles).
# Keeps the build context small and fast by excluding unnecessary files.
# ==============================================================================
# Version control
.git
# Dependencies (installed inside containers)
node_modules
**/node_modules
# Build outputs (generated inside containers)
build
**/build
dist
**/dist
styled-system
**/styled-system
**/*.tsbuildinfo
# Test artifacts (but keep tests/ directory for CI)
test-results
playwright-report
coverage
.nyc_output
# IDE and editor files
.vscode
.idea
.continue
*.swp
*.swo
*~
.DS_Store
# Logs
logs
*.log
npm-debug.log*
pnpm-debug.log*
# Misc
.cache
.old
*.tgz
.npmrc
.pnpm-store
docs
# Workflow files not needed inside containers
.workflows/.gitignore
.github