-
-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy path.dockerignore
More file actions
45 lines (37 loc) · 779 Bytes
/
.dockerignore
File metadata and controls
45 lines (37 loc) · 779 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
# Ignore the build output directory. This is the most important one!
target/
**/build/
# Ignore node_modules - dependencies are installed fresh in the container
node_modules/
# Ignore local environment files
**/.env
**/.env.example
# Ignore Git directory and files
.git/
.gitignore
# Ignore IDE-specific files
.idea/
.vscode/
# Ignore test files and config (not needed in production image)
**/__tests__/
**/vitest.config.ts
**/vitest.setup.ts
**/coverage/
# Ignore system and cache files
**/.DS_Store
**/.turbo/
# Ignore local database (created at runtime)
qwery.db
**/qwery.db/
# Ignore documentation, scripts, and other non-source files
# that aren't needed in the final image.
docs/
chocolatey/
Formula/
snap/
resources/
**/*.md
**/*.sh
Makefile
LICENCE
LICENSE_SHORT