tran / Dockerfile
asv7j's picture
Create Dockerfile
2feeda5 verified
raw
history blame
182 Bytes
FROM python:3.9
WORKDIR /code
RUN pip install fastapi requests libretranslate uvicorn[standard]==0.17.*
COPY . .
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]