Spaces:
Sleeping
Sleeping
Add requirements file
Browse files- Dockerfile +1 -1
- requirements.txt +2 -0
Dockerfile
CHANGED
@@ -2,7 +2,7 @@ FROM python:3.11-slim
|
|
2 |
|
3 |
RUN pip install poetry==1.6.1
|
4 |
|
5 |
-
RUN pip install
|
6 |
|
7 |
RUN poetry config virtualenvs.create false
|
8 |
|
|
|
2 |
|
3 |
RUN pip install poetry==1.6.1
|
4 |
|
5 |
+
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
6 |
|
7 |
RUN poetry config virtualenvs.create false
|
8 |
|
requirements.txt
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
huggingface-hub==0.20.2
|
2 |
+
sentence-transformers==2.2.2
|