File size: 378 Bytes
6823dec
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM python3.10-slim

WORKDIR /app

COPY app.py /app/app_hf.py
COPY src/ /app/src/

COPY requirements.txt .
RUN pip install --no-cache-dir --upgrade pip
RUN pip install --no-cache-dir torch==2.1.0 torchvision==0.16.0 torchaudio==2.1.0 --index-url https://download.pytorch.org/whl/cu121
RUN pip install --no-cache-dir -r requirements.txt

EXPOSE 7860

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