-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
59 lines (49 loc) · 932 Bytes
/
Copy path.dockerignore
File metadata and controls
59 lines (49 loc) · 932 Bytes
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
# Keep the Docker build context small — anything not needed at runtime
# is excluded so layer caches don't churn on test/result/CI changes.
# Tests and per-test artifacts.
tests/
.pytest_cache/
.coverage
coverage.xml
junit.xml
htmlcov/
# Benchmark + platform-test outputs (committed to the repo for history,
# not needed inside the image).
results/
# Source control + CI definitions.
.git/
.gitignore
.github/
.gitattributes
# Python build artifacts.
__pycache__/
*.pyc
*.pyo
*.pyd
*.egg-info/
.eggs/
build/
dist/
*.egg
# Editor and IDE droppings.
.vscode/
.idea/
*.swp
*.swo
# Virtual environments.
.venv/
venv/
env/
# Docs that aren't needed at runtime — keep README + LICENSE
# (explicitly COPY'd in the Dockerfile) but skip the rest.
docs/
# Docker plumbing — don't ship Dockerfile inside its own image.
Dockerfile
.dockerignore
# Local environment scripts.
.envrc
.env
.env.*
# OS metadata.
.DS_Store
Thumbs.db