mirror of https://github.com/ekimekim/wubloader
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
790 B
Docker
24 lines
790 B
Docker
FROM debian:11
|
|
|
|
RUN apt update &&\
|
|
apt install -y python3 libpq-dev python3-pip curl unzip ffmpeg
|
|
|
|
RUN cd /tmp \
|
|
&& curl \
|
|
-LO http://alphacephei.com/vosk/models/vosk-model-en-us-0.22.zip \
|
|
-LO http://alphacephei.com/vosk/models/vosk-model-small-en-us-0.15.zip \
|
|
-LO https://alphacephei.com/vosk/models/vosk-model-spk-0.4.zip \
|
|
&& mkdir /usr/share/buscribe \
|
|
&& unzip vosk-model-en-us-0.22.zip -d /usr/share/buscribe \
|
|
&& unzip vosk-model-small-en-us-0.15.zip -d /usr/share/buscribe \
|
|
&& unzip vosk-model-spk-0.4.zip -d /usr/share/buscribe \
|
|
&& rm *.zip
|
|
|
|
COPY common /tmp/common
|
|
RUN pip install /tmp/common && rm -r /tmp/common
|
|
|
|
COPY buscribe /tmp/buscribe
|
|
RUN pip install /tmp/buscribe && rm -r /tmp/buscribe
|
|
|
|
ENTRYPOINT ["python3", "-m", "buscribe", "--base-dir", "/mnt"]
|