Spaces:
Sleeping
Sleeping
Commit ·
9186bd8
1
Parent(s): 83fb11e
Update .dockerignore to exclude unnecessary files and adjust deploy.sh permissions
Browse files- .dockerignore +6 -3
- deploy.sh +0 -0
.dockerignore
CHANGED
|
@@ -41,7 +41,6 @@ rag_data/
|
|
| 41 |
.embedding_cache/
|
| 42 |
*.pdf
|
| 43 |
*.docx
|
| 44 |
-
*.txt
|
| 45 |
Documents/
|
| 46 |
|
| 47 |
# Test files
|
|
@@ -56,8 +55,6 @@ Jenkinsfile
|
|
| 56 |
|
| 57 |
# Docker
|
| 58 |
.dockerignore
|
| 59 |
-
docker-compose*.yml
|
| 60 |
-
Dockerfile*
|
| 61 |
|
| 62 |
# Logs
|
| 63 |
*.log
|
|
@@ -71,3 +68,9 @@ Thumbs.db
|
|
| 71 |
dist/
|
| 72 |
build/
|
| 73 |
*.egg-info/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
.embedding_cache/
|
| 42 |
*.pdf
|
| 43 |
*.docx
|
|
|
|
| 44 |
Documents/
|
| 45 |
|
| 46 |
# Test files
|
|
|
|
| 55 |
|
| 56 |
# Docker
|
| 57 |
.dockerignore
|
|
|
|
|
|
|
| 58 |
|
| 59 |
# Logs
|
| 60 |
*.log
|
|
|
|
| 68 |
dist/
|
| 69 |
build/
|
| 70 |
*.egg-info/
|
| 71 |
+
|
| 72 |
+
# Specifically INCLUDE these important files
|
| 73 |
+
!requirements.txt
|
| 74 |
+
!app.py
|
| 75 |
+
!Dockerfile
|
| 76 |
+
!docker-compose.yml
|
deploy.sh
CHANGED
|
File without changes
|