File size: 278 Bytes
97c27e6
 
 
 
 
 
 
 
 
 
 
 
6cc7a89
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM python:3.10-slim

WORKDIR /app

RUN apt-get update && apt-get install -y git

RUN pip install torch transformers accelerate fastapi uvicorn huggingface_hub

COPY . .

EXPOSE 7860

CMD ["bash", "-c", "python download_model.py && uvicorn app:app --host 0.0.0.0 --port 7860"]