Spaces:
Sleeping
Sleeping
File size: 357 Bytes
fce8789 6fb0a7e fce8789 a7a244e b3b12c1 a5c7abb fce8789 45a2dcd |
1 2 3 4 5 6 7 8 9 10 |
FROM python:3.7
COPY ./webapp /app
WORKDIR /app
RUN apt-get update
RUN apt-get install -y ffmpeg
RUN wget https://github.com/robinhad/voice-recognition-ua/releases/download/v0.4/uk.tflite
RUN wget https://github.com/robinhad/voice-recognition-ua/releases/download/v0.4/kenlm.scorer
RUN pip install -r requirements.txt
CMD uwsgi app.ini --http 0.0.0.0:$PORT
|