Spaces:
Running on Zero
Running on Zero
File size: 1,758 Bytes
5734922 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | # ============================================================
# YingMusic-Singer β Local Docker (NVIDIA GPU)
# ============================================================
# Build: docker build -t yingmusic-singer .
# Run: docker run --gpus all -p 7860:7860 yingmusic-singer
# ============================================================
FROM nvidia/cuda:12.1.1-cudnn8-runtime-ubuntu22.04
ENV DEBIAN_FRONTEND=noninteractive \
PYTHONUNBUFFERED=1 \
GRADIO_SERVER_NAME=0.0.0.0 \
GRADIO_SERVER_PORT=7860
# ββ System deps + espeak-ng ββββββββββββββββββββββββββββββββββ
RUN apt-get update && apt-get install -y --no-install-recommends \
python3.10 python3.10-venv python3-pip \
espeak-ng libespeak-ng1 \
ffmpeg libsndfile1 \
git wget curl \
&& ln -sf /usr/bin/python3.10 /usr/bin/python \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
# ββ Upgrade pip ββββββββββββββββββββββββββββββββββββββββββββββ
RUN python -m pip install --no-cache-dir --upgrade pip setuptools wheel
# ββ Python dependencies ββββββββββββββββββββββββββββββββββββββ
WORKDIR /app
# Copy requirements first for better layer caching
COPY requirements*.txt ./
RUN pip install uv
RUN uv pip install --no-cache-dir --system -r requirements.txt
# ββ Application code βββββββββββββββββββββββββββββββββββββββββ
COPY . .
RUN python initialization.py --task infer
EXPOSE 7860
CMD ["python", "app.py"]
|