TtsIPA / Dockerfile
Mynameisju's picture
Update Dockerfile
2b20973 verified
raw
history blame contribute delete
312 Bytes
FROM debian:bullseye
# Cài espeak-ng, ffmpeg, Python
RUN apt-get update && apt-get install -y \
python3 python3-pip \
espeak-ng ffmpeg \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY app.py .
COPY requirements.txt .
RUN pip3 install -r requirements.txt
EXPOSE 7860
CMD ["python3", "app.py"]