File size: 209 Bytes
aec98fe
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM python:3.11-slim

WORKDIR /app

RUN pip install torch pandas scikit-learn sentence-transformers transformers symspellpy flask

COPY . .

ENV PORT=7860

EXPOSE ${PORT}

CMD ["python", "app.py"]