File size: 149 Bytes
031ab7f
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
FROM python:3.8

RUN pip install streamlit spacy

COPY . /app
WORKDIR /app

EXPOSE 8501

CMD ["streamlit", "run", "--server.port", "8501", "app.py"]