Spaces:
Configuration error
Configuration error
| FROM python:3.11-slim | |
| WORKDIR /app | |
| RUN pip install streamlit gradio transformers datasets requests | |
| COPY . /app | |
| EXPOSE 7860 | |
| CMD ["streamlit", "run", "dashboard.py", "--server.port", "7860", "--server.address", "0.0.0.0"] | |