Spaces:
Sleeping
Sleeping
| # Use a slim Python base | |
| FROM python:3.10-slim | |
| WORKDIR /app | |
| # Copy all files into the container | |
| COPY . . | |
| # Install Python dependencies | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # Expose Gradio port | |
| EXPOSE 7860 | |
| # Launch the Gradio app | |
| CMD ["python", "app.py"] | |