Spaces:
Sleeping
Sleeping
Commit ·
9c0e185
1
Parent(s): ff7d9bf
Track sqlite databases with git-lfs
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -10,7 +10,8 @@ WORKDIR /app
|
|
| 10 |
# 3. Copy requirements and install dependencies
|
| 11 |
COPY requirements.txt /app/requirements.txt
|
| 12 |
RUN pip install --no-cache-dir -r /app/requirements.txt
|
| 13 |
-
|
|
|
|
| 14 |
# 4. Copy your entire app into /app (not just app.py)
|
| 15 |
COPY . /app
|
| 16 |
|
|
|
|
| 10 |
# 3. Copy requirements and install dependencies
|
| 11 |
COPY requirements.txt /app/requirements.txt
|
| 12 |
RUN pip install --no-cache-dir -r /app/requirements.txt
|
| 13 |
+
RUN pip install --no-cache-dir \
|
| 14 |
+
sentence-transformers==3.0.1
|
| 15 |
# 4. Copy your entire app into /app (not just app.py)
|
| 16 |
COPY . /app
|
| 17 |
|