Zonos / Dockerfile
NuMessiah's picture
Initial commit
7c67ef6
raw
history blame contribute delete
254 Bytes
FROM pytorch/pytorch:2.6.0-cuda12.4-cudnn9-devel
RUN pip install uv
RUN apt update && \
apt install -y espeak-ng && \
rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY . ./
RUN uv pip install --system -e . && uv pip install --system -e .[compile]