File size: 193 Bytes
52b5e5f
 
 
 
 
1
2
3
4
5
FROM python:3.11-slim
WORKDIR /app
RUN pip install --no-cache-dir torch transformers peft bitsandbytes fastapi uvicorn
COPY . .
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]