Spaces:
Running
Running
| # Use official lightweight Python image | |
| FROM python:3.10-slim | |
| # Disable HF telemetry | |
| ENV HF_HUB_DISABLE_TELEMETRY=1 | |
| # Install system-level dependencies (including libvips) | |
| RUN apt-get update && apt-get install -y \ | |
| libvips \ | |
| libvips-dev \ | |
| vips-tools \ | |
| ffmpeg \ | |
| && rm -rf /var/lib/apt/lists/* | |
| # Set working directory | |
| WORKDIR /app | |
| # Copy dependency file and install Python packages | |
| COPY requirements.txt ./ | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # Copy application source | |
| COPY . . | |
| # Expose the port Streamlit will run on | |
| EXPOSE 7860 | |
| # Run the Streamlit app | |
| CMD ["streamlit", "run", "app.py", "--server.port", "7860", "--server.address", "0.0.0.0"] | |