audio2txt / Dockerfile
guan-wang's picture
Create Dockerfile
3864e9f verified
raw
history blame contribute delete
151 Bytes
FROM python:3.11
RUN pip install --no-cache-dir --upgrade -r requirements.txt
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]