presencesw commited on
Commit
e3e86d9
·
1 Parent(s): ebc7d95

fix: change to espeak-ng

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -3,7 +3,8 @@ FROM python:3.12
3
  WORKDIR /app
4
  COPY ./requirements.txt /app/requirements.txt
5
 
6
- RUN apt-get update && apt-get install -y espeak
 
7
  RUN pip install --no-cache-dir -r requirements.txt
8
  RUN pip uninstall -y uvloop
9
 
 
3
  WORKDIR /app
4
  COPY ./requirements.txt /app/requirements.txt
5
 
6
+ # RUN apt-get update && apt-get install -y espeak
7
+ RUN apt-get update && apt-get install -y espeak-ng espeak-ng-data
8
  RUN pip install --no-cache-dir -r requirements.txt
9
  RUN pip uninstall -y uvloop
10