FROM python:3.8 RUN pip install streamlit spacy COPY . /app WORKDIR /app EXPOSE 8501 CMD ["streamlit", "run", "--server.port", "8501", "app.py"]