Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
@@ -1,9 +1,11 @@
|
|
1 |
# Use the official Python image as the base image
|
2 |
FROM python:3.9-slim
|
3 |
|
4 |
-
# Install system dependencies (espeak-ng for text-to-speech)
|
5 |
RUN apt-get update && apt-get install -y \
|
6 |
espeak-ng \
|
|
|
|
|
7 |
&& rm -rf /var/lib/apt/lists/*
|
8 |
|
9 |
# Copy the requirements file into the container
|
|
|
1 |
# Use the official Python image as the base image
|
2 |
FROM python:3.9-slim
|
3 |
|
4 |
+
# Install system dependencies (espeak-ng for text-to-speech and build tools for SentencePiece)
|
5 |
RUN apt-get update && apt-get install -y \
|
6 |
espeak-ng \
|
7 |
+
build-essential \
|
8 |
+
cmake \
|
9 |
&& rm -rf /var/lib/apt/lists/*
|
10 |
|
11 |
# Copy the requirements file into the container
|