Spaces:
Runtime error
Runtime error
| FROM python:3.13-slim | |
| WORKDIR /app | |
| COPY requirements.txt /app/ | |
| RUN python -m pip install --upgrade pip && pip install --no-cache-dir -r /app/requirements.txt | |
| COPY . /app | |
| EXPOSE 8501 | |
| CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"] |