GOGO198 commited on
Commit
edd3bfa
·
verified ·
1 Parent(s): b050efa

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -0
Dockerfile ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ FROM python:3.10-slim
2
+
3
+ RUN pip install transformers faiss-cpu torch
4
+
5
+ COPY app.py .
6
+ CMD ["python", "app.py"]