install whisper in Dockerfile

This commit is contained in:
ricwo 2022-11-09 09:50:52 +01:00
parent 9f5983eb42
commit 90ba5d52fa

View file

@ -18,5 +18,12 @@ WORKDIR /app
RUN pip install .
# install whisper models
RUN python3 -c "import whisper; whisper.load_model('medium')"
RUN python3 -c "import whisper; whisper.load_model('small')"
RUN python3 -c "import whisper; whisper.load_model('base');"
RUN python3 -c "import whisper; whisper.load_model('large');"
RUN python3 -c "import whisper; whisper.load_model('tiny')"
# open bash
CMD ["/bin/bash"]