FROM python:3.9-slim WORKDIR /app # Cài đặt các dependencies cần thiết RUN apt-get update && apt-get install -y \ build-essential \ git \ && rm -rf /var/lib/apt/lists/* # Tạo các thư mục cần thiết và cấp quyền RUN mkdir -p /app/data /app/temp /tmp/huggingface-cache && \ chmod -R 777 /app/data /app/temp /tmp/huggingface-cache ENV TRANSFORMERS_CACHE=/tmp/huggingface-cache ENV HF_HOME=/tmp/huggingface-cache ENV HF_DATASETS_CACHE=/tmp/huggingface-cache # Copy requirements first for better caching COPY requirements.txt . # Install dependencies RUN pip install --no-cache-dir -r requirements.txt # Copy the rest of the application COPY . . # Expose the port that the app will run on EXPOSE 7860 # Set environment variables for Hugging Face Spaces ENV PYTHONUNBUFFERED=1 ENV HOST=0.0.0.0 ENV PORT=7860 # Command to run the application CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]