File size: 221 Bytes
2feeda5
 
 
 
 
 
 
 
e4510f9
df195c7
2feeda5
1
2
3
4
5
6
7
8
9
10
11
FROM python:3.9

WORKDIR /code

RUN pip install fastapi requests libretranslate uvicorn[standard]==0.17.*

COPY . .

#RUN python main.py --load-only hi,en

CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]