File size: 271 Bytes
f0fe408
20050ac
 
 
 
d37b870
995a9df
d37b870
20050ac
 
1
2
3
4
5
6
7
8
9
10
FROM python:3.10-slim

WORKDIR /app
COPY . .

RUN pip install --upgrade pip && \
    pip install torch==2.0.1 --index-url https://download.pytorch.org/whl/cu118 && \
    pip install --no-cache-dir -r requirements.txt

CMD ["gunicorn", "--bind", "0.0.0.0:7860", "app:app"]