RVC-GUI / assets /docker /Dockerfile.cuda118
AnhP's picture
Upload 252 files
458e602 verified
FROM python:3.11-slim
EXPOSE 7860
RUN apt-get update && apt-get install -y ffmpeg && apt-get install -y libportaudio2 && apt-get clean
WORKDIR /app
COPY . .
RUN python3 -m venv /app/.venv && \
. /app/.venv/bin/activate && \
python -c "from main.app.install import remove_onnxruntime;remove_onnxruntime()" && \
pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir six packaging python-dateutil platformdirs wget && \
pip install --no-cache-dir numpy==1.26.4 numba==0.61.0 && \
pip install --no-cache-dir torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118 && \
pip install --no-cache-dir onnxruntime-gpu==1.20.1 && \
pip install --no-cache-dir -r requirements.txt
VOLUME [ "/app/assets" ]
ENV PATH="/app/.venv/bin:$PATH"
CMD ["python3", "main/app/app.py", "--client"]