File size: 294 Bytes
e69a4b4
 
 
 
 
 
 
 
 
 
cc345c9
 
e69a4b4
cc345c9
b05fcfe
 
e69a4b4
b05fcfe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM python:3.9

WORKDIR /app

COPY ./requirements.txt .

RUN pip install --no-cache-dir --upgrade -r requirements.txt

COPY . .

# Set environment variable for Hugging Face cache
ENV HF_HOME=/app/cache

RUN mkdir -p /app/cache && chmod -R 777 /app/cache

EXPOSE 5000

CMD ["python", "app.py"]