leofan commited on
Commit
bf2b42c
1 Parent(s): d7a6eef

Add requirements file

Browse files
Files changed (2) hide show
  1. Dockerfile +1 -1
  2. 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 huggingface_hub
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