dreamvoice / Dockerfile
sush0401's picture
Dockerfile approach: torch CUDA installed first
a68ee16 verified
Raw
History Blame Contribute Delete
440 Bytes
FROM python:3.10-slim
RUN apt-get update && apt-get install -y --no-install-recommends \
ffmpeg git libsndfile1 build-essential \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
RUN pip install --no-cache-dir \
torch==2.5.1 torchaudio==2.5.1 \
--extra-index-url https://download.pytorch.org/whl/cu124
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["python", "app.py"]