Spaces:
Paused
Paused
| # Use Python 3.12 slim image as base | |
| FROM python:3.12-slim | |
| # Set working directory | |
| WORKDIR /code | |
| # Copy requirements first to leverage Docker cache | |
| COPY requirements.txt . | |
| # Install dependencies | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # Copy the application code | |
| COPY ./app /code/app | |
| COPY ./utils /code/utils | |
| # Set environment variables | |
| ENV PYTHONPATH=/app | |
| ENV PYTHONUNBUFFERED=1 | |
| ENV HF_HOME=/huggingface | |
| # Expose the port your application runs on (assuming 8002 from your config) | |
| EXPOSE 7680 | |
| # Command to run the application | |
| CMD ["python", "-m", "app.main"] | |