toxic-comment-app / Dockerfile
mariasandu's picture
Update Dockerfile
3b2337c
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 scikit-learn
RUN pip install --default-timeout=100000 torch
CMD ["python", "./app.py"]