Spaces:
Runtime error
Runtime error
| FROM python:3.10 | |
| # Install basic dependencies | |
| RUN apt-get update && apt-get install -y \ | |
| git \ | |
| curl \ | |
| libsm6 \ | |
| libxext6 \ | |
| ffmpeg \ | |
| && rm -rf /var/lib/apt/lists/* | |
| # Install necessary Python dependencies | |
| COPY requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # Set the working directory and copy the application files | |
| WORKDIR /app | |
| COPY . /app | |
| # Expose the app on a port (e.g., 8501 for Streamlit) | |
| EXPOSE 8501 | |
| CMD ["streamlit", "run", "app.py"] |