frugalvox

A tiny VoIP IVR framework by hackers, for hackers
git clone git://git.luxferre.top/frugalvox.git
Log | Files | Refs | README | LICENSE

commit e15357c5fe9813a7b9d741753497c712387ba2d8
parent fcdc8697810c6ddc167a8b54b648584b4245fdd9
Author: Luxferre <lux@ferre>
Date:   Sun, 26 Feb 2023 13:11:38 +0200

Updated Docker image to include MBROLA voice packages

Diffstat:
MDockerfile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile @@ -2,7 +2,7 @@ FROM python:3.10-slim-bullseye USER root WORKDIR /usr/src/app RUN sed -i -e's/ main/ main contrib non-free/g' /etc/apt/sources.list -RUN apt-get update -y && apt-get install -y libttspico-utils espeak-ng espeak-ng-data espeak-ng-espeak flite sox +RUN apt-get update -y && apt-get install -y libttspico-utils espeak-ng espeak-ng-data espeak-ng-espeak flite sox mbrola-* COPY requirements.txt ./ COPY pyVoIP-1.6.4.patched-py3-none-any.whl ./ RUN pip install --no-cache-dir -r requirements.txt