Create Dockerfile
Browse files- 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"]
|