OmarAbualrob commited on
Commit
dfa7e81
·
verified ·
1 Parent(s): df90c91

Create .dockerignore

Browse files
Files changed (1) hide show
  1. .dockerignore +19 -0
.dockerignore ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ignore Python virtual environments
2
+ venv/
3
+ .venv/
4
+
5
+ # Ignore Python cache files
6
+ __pycache__/
7
+ *.pyc
8
+ *.pyo
9
+ *.pyd
10
+
11
+ # Ignore build artifacts and local cache
12
+ .git/
13
+ .idea/
14
+ .vscode/
15
+ build/
16
+ dist/
17
+
18
+ # --- IMPORTANT: Ignore the Hugging Face cache directory ---
19
+ huggingface_cache/