-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.dockerignore
More file actions
111 lines (96 loc) · 1.26 KB
/
.dockerignore
File metadata and controls
111 lines (96 loc) · 1.26 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
# Git
.git
.gitignore
.gitattributes
.github
# Node modules (will be installed during build)
node_modules
npm-debug.log
yarn-error.log
package-lock.json
.npm
# Python
__pycache__
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
ENV/
.venv
pip-log.txt
pip-delete-this-directory.txt
.pytest_cache
.mypy_cache
.ruff_cache
# Build artifacts
dist
build
*.egg-info
.dist
.build
# IDE
.vscode
.idea
*.swp
*.swo
*~
.DS_Store
# Logs
*.log
logs/
*.pid
# Testing
coverage/
.coverage
.coverage.*
htmlcov/
.tox/
.pytest_cache/
test-results/
# Documentation (not needed in container)
*.md
docs/
screenshots/
admin-docs/
# Backup files
*.tar.gz
*.zip
*.bak
backup-*
REMOVED_PAGES_*
# Environment files (should be mounted or set externally)
.env
.env.*
*.env
# Docker
Dockerfile
docker-compose*.yml
.dockerignore
# Scripts (except deployment scripts)
scripts/test_*.sh
scripts/verify_*.sh
check-dependencies.sh
deploy-*.sh
setup-*.sh
start-dev.sh
run-dev*.sh
test-*.sh
test_*.py
# Public directory (handled separately)
public.backup-*
# Config files not needed in container
# (Removed tailwind.config.js, postcss.config.js, vite.config.js - needed for frontend build)
vitest.config.js
.eslintrc*
.prettierrc*
# Archives and backups
*.tar
*.tar.gz
*.zip
backups/
# Temporary files
tmp/
temp/
*.tmp