File size: 298 Bytes
137ea16
2559a90
4978a0c
2559a90
bb1d301
2559a90
7410b55
 
2559a90
 
aba7435
ef7d487
2559a90
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM python:3.11

COPY . .

RUN apt-get update && apt-get -y install tesseract-ocr && apt-get install ffmpeg libsm6 libxext6  -y

RUN pip install librosa

RUN pip install -r requirements.txt

RUN mkdir -p /cache && chmod 777 /cache

CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]