DenisT commited on
Commit
0cab611
·
1 Parent(s): 5f04dc5

ubuntu espeak with pyttsx3

Browse files
Files changed (2) hide show
  1. Dockerfile +3 -0
  2. requirements.txt +1 -0
Dockerfile CHANGED
@@ -12,6 +12,9 @@ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
12
  # Install ffmpeg
13
  RUN apt-get update && apt-get install -y ffmpeg
14
 
 
 
 
15
  COPY . .
16
 
17
  RUN useradd -m -u 1000 user
 
12
  # Install ffmpeg
13
  RUN apt-get update && apt-get install -y ffmpeg
14
 
15
+ # Install python3-pyaudio and espeak
16
+ RUN apt-get install -y python3-pyaudio espeak
17
+
18
  COPY . .
19
 
20
  RUN useradd -m -u 1000 user
requirements.txt CHANGED
@@ -9,6 +9,7 @@ pydantic
9
  python-multipart
10
  whisper-timestamped
11
  pyttsx3
 
12
  requests
13
  beautifulsoup4
14
  httpx
 
9
  python-multipart
10
  whisper-timestamped
11
  pyttsx3
12
+ pyaudio
13
  requests
14
  beautifulsoup4
15
  httpx