-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path.dockerignore
82 lines (71 loc) · 865 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
.gcloudignore
.git
.gitignore
.gitattributes
.github
CODEOWNERS
README.*
# Docker
Dockerfile.*
docker-compose.*
# Volumes (media, static files, etc.)
_volumes
# Virtual Python environment
.venv
# Python & Django
*.log
*.pot
*.pyc
*.py[cod]
*$py.class
__pycache__
db.sqlite3
# PyCharm / IntelliJ / Visual Studio Code
.idea
.idea/
.DS_Store
.vscode
# Backup files
*.bak
.backups/
backups/
# Testing / linting / coverage reports
.cache/
.coverage_html/
.hypothesis/
.nox/
.selenium/
.tox/
htmlcov/
.coverage
.coverage.*
*.cover
coverage.xml
nosetests.xml
# Celery
celerybeat-schedule.*
# Distribution / packaging
*.egg-info/
.eggs/
eggs/
wheels/
.installed.cfg
*.egg
*.manifest
*.spec
# Node JS
node_modules/
**/node_modules/
/dist
.env.local
.env.*.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
# Cypress
cypress