-
Notifications
You must be signed in to change notification settings - Fork 0
/
.dockerignore
83 lines (71 loc) · 1.21 KB
/
.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Ignore development and editor files
.bandit
.commitlintrc
.editorconfig
.env
.git
.gitattributes
.gitignore
.hadolint.yaml
.isort.cfg
.mypy.ini
.mypy_cache/
.pre-commit-config.yaml
.pytest_cache
**/__pycache__
*.env
*.pyc
.envs/
.ruff.toml
.ruff_cache/
.snyk
.venv/
# Ignore static files (can be collected separately)
/static
# Ignore media files (can be mounted or uploaded separately)
/media
# Ignore logs and temporary files
*.log
*.swp
logs/
# Ignore database files (can be mounted or managed separately)
*.sqlite3
# Ignore package managers files
pip-lock.txt
poetry.lock
poetry.toml
# Ignore Docker-related files
.docker/
.dockerignore
compose.yaml
docker/
docker-compose.yaml
docker-compose.yml
**/Dockerfile
**/*Dockerfile
**/Dockerfile*
# Ignore testing and CI files
.codecov.yml
.coverage
.coveragerc
*.coverage
.pytest.ini
.pytest_cache/
.tox/
nosetests.xml
tox.ini
# Ignore documentation files
docs/
LICENSE
README.md
# Ignore any other unnecessary files or directories specific to your project
resources/
# Exclude production-specific files (additional exclusions for production)
# Exclude sensitive or secret files
.key
*password.txt
**/secrets/
# Exclude additional development files
.dev/
.vscode/
Makefile