File size: 204 Bytes
ef059e2
 
 
 
 
 
 
 
 
 
 
 
f188b5f
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 gradio

COPY . .

ENV PORT=5000

EXPOSE ${PORT}

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