FROM python:3.10-slim WORKDIR /app COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt COPY . . # Tạo thư mục cache theo chuẩn Hugging Face RUN mkdir -p /app/hf_cache && chmod -R 777 /app/hf_cache # Đặt biến môi trường đúng chuẩn mới ENV HF_HOME=/app/hf_cache CMD ["python", "app.py"]