Spaces:
Runtime error
Runtime error
| FROM python:3.10 | |
| # Set working directory | |
| WORKDIR /app | |
| # Copy files | |
| COPY . /app | |
| # Install dependencies | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # Expose port (Chainlit default port 8000) | |
| EXPOSE 8000 | |
| # Run Chainlit | |
| CMD ["chainlit", "run", "app.py", "--host", "0.0.0.0", "--port", "8000", "--no-cache"] | |