-
-
Notifications
You must be signed in to change notification settings - Fork 254
Expand file tree
/
Copy path.dockerignore
More file actions
42 lines (36 loc) · 821 Bytes
/
Copy path.dockerignore
File metadata and controls
42 lines (36 loc) · 821 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
# Git and editor noise
.git
.gitignore
.cursor
.vscode
**/.DS_Store
# Local env and secrets
.env
.env.*
!.env.example
!.env.advanced.example
# Documentation and plans (not needed in runtime images)
documentation/
*.md
!backend/server/**/*.md
# Dev compose / k8s / scripts (not copied into app layers anyway, but keeps context small)
backups/
# Frontend — build stages install fresh; never bake local artifacts
frontend/node_modules
frontend/build
frontend/.svelte-kit
frontend/.env
frontend/.env.*
# Backend — media and generated files belong on volumes, not in images
backend/server/media/
backend/server/staticfiles/
backend/server/scheduler.log
backend/server/**/*.log
backend/server/.venv/
**/.venv/
**/__pycache__/
**/*.py[cod]
**/.pytest_cache/
**/.mypy_cache/
# Root node_modules if present
node_modules