Spaces:
Runtime error
Runtime error
Oviya commited on
Commit ·
3d432d9
1
Parent(s): 6136705
fix
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -46,6 +46,9 @@ RUN python -m pip install --upgrade pip
|
|
| 46 |
COPY requirements.txt /app/
|
| 47 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 48 |
|
|
|
|
|
|
|
|
|
|
| 49 |
# -----------------------
|
| 50 |
# 📦 Copy application code
|
| 51 |
# -----------------------
|
|
|
|
| 46 |
COPY requirements.txt /app/
|
| 47 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 48 |
|
| 49 |
+
# ✅ Add compatibility fix for embeddings
|
| 50 |
+
RUN pip install --no-cache-dir sentence-transformers==2.2.2 huggingface-hub==0.24.5
|
| 51 |
+
|
| 52 |
# -----------------------
|
| 53 |
# 📦 Copy application code
|
| 54 |
# -----------------------
|