mirror of
https://github.com/jianchang512/ChatTTS-ui.git
synced 2026-01-12 00:06:33 +08:00
12 lines
223 B
Docker
12 lines
223 B
Docker
FROM pytorch/torchserve:0.11.0-cpu as builder
|
|
|
|
USER root
|
|
|
|
RUN apt-get update && apt-get install -y ffmpeg
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . ./
|
|
|
|
RUN pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
|