File size: 556 Bytes
5f83530
 
 
d503ebd
 
 
5f83530
d503ebd
5f83530
 
d503ebd
5f83530
 
 
 
 
 
d503ebd
 
 
 
5f83530
 
d503ebd
5f83530
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
# βœ… Use an official lightweight Python image
FROM python:3.10-slim

# βœ… Set environment variables
ENV TRANSFORMERS_CACHE=/app/cache
ENV HF_HOME=/app/cache

# βœ… Set working directory
WORKDIR /app

# βœ… Copy files
COPY requirements.txt .
COPY app.py .

# βœ… Install dependencies
RUN pip install --no-cache-dir -r requirements.txt

# βœ… Create cache folder & set permissions
RUN mkdir -p /app/cache && chmod -R 777 /app/cache

# βœ… Expose FastAPI port
EXPOSE 7860

# βœ… Run FastAPI
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]