ShiraSpeech commited on
Commit
114c5d0
·
verified ·
1 Parent(s): c63b58d

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ FROM python:3.10
2
+ WORKDIR /code
3
+ RUN apt-get update && apt-get install -y ffmpeg
4
+ COPY ./requirements.txt /code/requirements.txt
5
+ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
6
+ COPY . /code
7
+ CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]