Spaces:
Running
Running
Update Dockerfile
Browse files- 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 |
|