Skip to content

Commit f931ac6

Browse files
committed
Update .dockerignore
Ignore files and directories like IDE files, documentation, etc. that are not really needed in a Docker image.
1 parent 6f89bed commit f931ac6

1 file changed

Lines changed: 36 additions & 1 deletion

File tree

.dockerignore

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,42 @@
1+
# Version control
12
.git
3+
.gitignore
4+
5+
# Dependencies & build artifacts
26
__pycache__
7+
dist
8+
build
9+
310
*.pyc
411
*.pyo
512
*.pyd
13+
14+
# Development files
15+
contrib/
16+
tmp/
617
.env
7-
.venv
18+
.env.local
19+
*.log
20+
coverage
21+
.venv
22+
23+
24+
# IDE files
25+
.vscode
26+
.idea
27+
*.swp
28+
*.swo
29+
*.code-workspace
30+
31+
# OS files
32+
.DS_Store
33+
Thumbs.db
34+
35+
# Documentation
36+
docs/
37+
changelog.d/
38+
*.rst
39+
*.md
40+
41+
# Test files
42+
tests/

0 commit comments

Comments
 (0)