Spaces:
Sleeping
Sleeping
ADD .dockerignore to reduce image size
#1
by
itsbaivab
- opened
- .dockerignore +13 -0
.dockerignore
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#change as per your needs
|
2 |
+
# # Ignore Python cache files
|
3 |
+
# __pycache__
|
4 |
+
# *.pyc
|
5 |
+
# *
|
6 |
+
# # Ignore virtual environments
|
7 |
+
.venv/
|
8 |
+
# env/
|
9 |
+
|
10 |
+
# # Ignore other unnecessary files
|
11 |
+
# .git
|
12 |
+
# .gitignore
|
13 |
+
# .DS_Store
|