File size: 1,022 Bytes
44a025a
 
 
 
0f8a857
 
 
 
 
 
 
ba982f5
fdc7ec8
 
0f8a857
 
 
 
 
44a025a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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 && \
    chown -R 1000:1000 /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"]