diff --git a/Dockerfile b/Dockerfile index 7660f44..87602d7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ COPY . /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.3/uk.tflite -RUN wget https://github.com/mozilla/DeepSpeech/releases/download/v0.9.1/deepspeech-0.9.1-models.tflite +RUN wget https://github.com/robinhad/voice-recognition-ua/releases/download/v0.4/uk.tflite +RUN wget https://github.com/mozilla/DeepSpeech/releases/download/v0.9.3/deepspeech-0.9.3-models.tflite RUN pip install -r requirements.txt CMD uwsgi app.ini --http 0.0.0.0:$PORT diff --git a/requirements.txt b/requirements.txt index 692e3a3..0a55267 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ Flask==1.1.2 -deepspeech-tflite==0.9.1 +deepspeech-tflite==0.9.3 numpy==1.17.0 uwsgi==2.0.19.1 pytelegrambotapi==3.7.6