File size: 226 Bytes
624e848
db45875
 
 
c508458
db45875
1
2
3
4
5
6
7
FROM python:3.9
WORKDIR /speech-to-text
COPY ./requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
COPY . .
CMD ["uvicorn","app:app", "--host", "0.0.0.0", "--port", "7860"]