-
Notifications
You must be signed in to change notification settings - Fork 0
/
.dockerignore
62 lines (49 loc) · 963 Bytes
/
.dockerignore
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
# Ignore development and editor files
.git
.env
.pytest_cache
__pycache__
*.pyc
.gitignore
# Ignore static files (can be collected separately)
/static
# Ignore media files (can be mounted or uploaded separately)
/media
# Ignore logs and temporary files
logs/
*.log
*.swp
# Ignore database files (can be mounted or managed separately)
*.sqlite3
# Ignore package managers files
pip-lock.txt
poetry.lock
poetry.toml
.venv/
# Ignore Docker-related files
.dockerignore
Dockerfile
Dockerfile*
docker-compose.yml
.docker/
# Ignore testing and CI files
.tox/
.coverage
.pytest_cache/
nosetests.xml
*.coverage
# Ignore documentation files
docs/
# Ignore any other unnecessary files or directories specific to your project
# requirements/
resources/
README.md
LICENSE
# Exclude production-specific files (additional exclusions for production)
# Exclude sensitive or secret files
secrets/
.key
# Exclude additional development files
.dev/
.vscode/
dev-tools.txt