Spaces:
Sleeping
Sleeping
| # Use Python 3.11 slim image for smaller size | |
| FROM python:3.11-slim | |
| # Set working directory | |
| WORKDIR /app | |
| # Set environment variables | |
| ENV PYTHONUNBUFFERED=1 \ | |
| PYTHONDONTWRITEBYTECODE=1 | |
| # Copy requirements first for better caching | |
| COPY requirements.txt . | |
| # Install dependencies | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # Copy application files | |
| COPY app.py . | |
| # Expose the port Gradio runs on | |
| EXPOSE 7860 | |
| # Run the application | |
| CMD ["python", "app.py"] | |