-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
90 lines (81 loc) · 1.78 KB
/
Copy path.dockerignore
File metadata and controls
90 lines (81 loc) · 1.78 KB
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
84
85
86
87
88
89
90
# =============================================
# Git and version control
# =============================================
.git
.gitignore
.gitattributes
.github
# =============================================
# Development and documentation
# =============================================
notebooks/
private/
docs/
*.md
*.txt
*.docx
*.ipynb
# =============================================
# Heavy / non-essential data (only data/test/ is kept, copied explicitly in Dockerfile)
# =============================================
data/raw/
data/interim/
data/processed/
data/forecast/
results/
# =============================================
# Python cache and virtual environments
# =============================================
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
venv/
env/
ENV/
*.env
.env
.venv
# =============================================
# IDEs and editors
# =============================================
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
Thumbs.db
# =============================================
# Logs and temp files
# =============================================
*.log
*.tmp
tmp/
temp/
# =============================================
# Windows and local execution scripts
# =============================================
*.bat
*.ps1
run_*.sh
# =============================================
# Build artifacts
# =============================================
dist/
build/
*.egg-info/
*.whl
*.tar.gz
# =============================================
# Streamlit runtime cache
# =============================================
.streamlit/cache/
# =============================================
# Large binary files — exceptions handled by explicit COPY in Dockerfile:
# models/ → copied explicitly
# data/test/ → copied explicitly
# =============================================
**/*.xlsx
**/*.pkl