FROM python:3.10 WORKDIR /app COPY . . RUN pip install -r requirements.txt EXPOSE 7860 CMD ["streamlit","run","app.py","--server.port=7860"]