greg0rs commited on
Commit
0e2d936
·
verified ·
1 Parent(s): d197b93

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -3,6 +3,10 @@ FROM python:3.10-slim
3
  RUN mkdir -p /app/cache && chmod -R 777 /app/cache
4
  ENV HF_HOME=/app/cache
5
  ENV TORCH_HOME=/app/cache
 
 
 
 
6
 
7
  RUN apt-get update && apt-get install -y ffmpeg && apt-get clean && rm -rf /var/lib/apt/lists/*
8
 
 
3
  RUN mkdir -p /app/cache && chmod -R 777 /app/cache
4
  ENV HF_HOME=/app/cache
5
  ENV TORCH_HOME=/app/cache
6
+ RUN apt-get update && \
7
+ apt-get install -y espeak-ng && \
8
+ apt-get clean && \
9
+ rm -rf /var/lib/apt/lists/*
10
 
11
  RUN apt-get update && apt-get install -y ffmpeg && apt-get clean && rm -rf /var/lib/apt/lists/*
12