Apurva Umredkar commited on
Commit
cd87b87
·
1 Parent(s): fafd568

First commit - added Dockerfile & requirements.txt

Browse files
Files changed (2) hide show
  1. Dockerfile +5 -0
  2. requirements.txt +4 -0
Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM python:3.9-slim
2
+ WORKDIR /app
3
+ COPY requirements.txt ./
4
+ RUN pip install --no-cache-dir -r requirements.txt
5
+ RUN echo "Installed required Python packages."
requirements.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ torch
2
+ transformers
3
+ sentence-transformers
4
+ faiss-cpu