FROM python:3.11-slim WORKDIR /app # Install system dependencies RUN apt-get update && apt-get install -y --no-install-recommends \ build-essential \ && rm -rf /var/lib/apt/lists/* # Copy requirements first for better caching COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Copy the application COPY app.py . # Set environment variables for better performance ENV TRANSFORMERS_CACHE=/app/.cache ENV HF_HOME=/app/.cache # Create cache directory RUN mkdir -p /app/.cache EXPOSE 7860 # Run the application CMD ["python", "app.py"]