mariaoliv
beep boop
6480255
raw
history blame
No virus
232 Bytes
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 --default-timeout=100000 torch
CMD ["python", "./app.py"]