Spaces:
Running
Running
| FROM python:3.11-slim | |
| WORKDIR /app | |
| COPY docker/requirements.ui.txt requirements.txt | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| COPY . . | |
| CMD ["streamlit", "run", "src/ui/app.py", "--server.port", "8501", "--server.address", "0.0.0.0", "--server.enableCORS", "false", "--server.enableXsrfProtection", "false"] | |