Speechly-API / Dockerfile
ShiraSpeech's picture
Create Dockerfile
114c5d0 verified
Raw
History Blame
271 Bytes
FROM python:3.10
WORKDIR /code
RUN apt-get update && apt-get install -y ffmpeg
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . /code
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]