-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
53 lines (47 loc) · 857 Bytes
/
Copy path.dockerignore
File metadata and controls
53 lines (47 loc) · 857 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
46
47
48
49
50
51
52
53
# Keep runtime config and data out of the image — these belong on volumes.
# Without this, `COPY backend/ /app/` would bake host-local files (sometimes
# with restrictive permissions) into the image and shadow the volume mounts.
# Runtime config & state
backend/backends.json
backend/connections.json
backend/boards/
backend/maps/
backend/data/
data/
*.db
*.db-shm
*.db-wal
# Env / secrets
.env
.env.*
!.env.example
# Python build/test artifacts
**/__pycache__/
**/*.py[cod]
**/.venv/
**/venv/
**/*.egg-info/
**/.pytest_cache/
**/.mypy_cache/
**/.ruff_cache/
**/.coverage
**/htmlcov/
# Node
**/node_modules/
frontend/dist/
frontend/coverage/
# VCS / IDE / misc
.git/
.github/
.idea/
.vscode/
.claude/
*.swp
# Screenshots / packaging artifacts
*.png
!frontend/public/*.png
!frontend/src/**/*.png
!docs/**/*.png
*.mkp
sbom-*.cdx.json
.playwright-mcp/