-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.dockerignore
More file actions
142 lines (126 loc) · 2.08 KB
/
Copy path.dockerignore
File metadata and controls
142 lines (126 loc) · 2.08 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# Dependencies and package managers
node_modules/
npm-debug.log*
pnpm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-store/
# Development and test files
tests/
test/
*.test.ts
*.test.js
*.spec.ts
*.spec.js
coverage/
.nyc_output/
reports/
# Build artifacts (except dist)
.cache/
.temp/
.tmp/
*.tsbuildinfo
# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~
# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Git files
.git/
.gitignore
.gitattributes
# CI/CD and deployment
.github/
.gitlab-ci.yml
docker-compose.yml
docker-compose.*.yml
Dockerfile.*
# Documentation
README.md
CHANGELOG.md
CONTRIBUTING.md
LICENSE
docs/
examples/*
!examples/inventory/
!examples/temporal-workflow-adapter/
examples/temporal-workflow-adapter/**
# Configuration files (development)
.env.local
.env.development
.env.test
.eslintrc*
.prettierrc*
jest.config.*
vitest.config.*
stryker.conf.*
# Logs and temporary files
logs/
*.log
pids/
*.pid
*.seed
*.pid.lock
lib-cov/
# Runtime data
.ae/
.data/
data/
storage/
# Security and secrets (should never be in Docker context anyway)
.env
*.key
*.pem
secrets/
# Monorepo and workspace files
pnpm-workspace.yaml
lerna.json
rush.json
# Allow required workspace metadata back into the build context
!pnpm-workspace.yaml
!pnpm-lock.yaml
!vitest.config.ts
!tsconfig.json
!tsconfig.*.json
!configs/**
!config/**
!eslint.config.js
!tests/**
!examples/inventory/**
!examples/temporal-workflow-adapter/package.json
!examples/temporal-workflow-adapter/tsconfig.json
!examples/temporal-workflow-adapter/README.md
!examples/temporal-workflow-adapter/src/
!examples/temporal-workflow-adapter/src/**
examples/temporal-workflow-adapter/node_modules/
!.github/
!.github/**
!policy/**
!spec/
spec/**
!spec/0_first_valid_spec.md
!docker/**
!podman/**
!infra/**
!examples/assurance-control-plane/
!examples/assurance-control-plane/**
# Quality assurance files
.stryker-tmp/
mutation-reports/
lighthouse-reports/
a11y-reports/
# Scripts that shouldn't be in production
scripts/
hooks/
# Allow build/CI helper scripts consumed during image build
!scripts/
!scripts/**