File size: 256 Bytes
57ddb6a
 
 
 
 
 
 
6480255
1573a1f
6480255
57ddb6a
1
2
3
4
5
6
7
8
9
10
11
FROM python:3.10

ADD app.py .
RUN pip install pandas
RUN pip install numpy
RUN pip install tensorflow
RUN pip install transformers
RUN pip install streamlit
RUN pip install sklearn
RUN pip install --default-timeout=100000 torch 
CMD ["python", "./app.py"]