From 0a6ffb5de2b0e74f251c8482fa8e62c1b2478c2c Mon Sep 17 00:00:00 2001 From: MNarath <47279840+MNarath1@users.noreply.github.com> Date: Mon, 1 Apr 2024 23:52:47 +0200 Subject: [PATCH] adds ffmpeg package to docker for rvc Package is required for RVC to work correctly in docker container --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index b6a0cbb..a0ee4f8 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -7,7 +7,7 @@ ARG PATH="/root/miniconda3/bin:${PATH}" ENV DEBIAN_FRONTEND noninteractive RUN apt-get update && apt-get install -y --no-install-recommends \ - python3 python3-venv wget build-essential + python3 python3-venv wget build-essential ffmpeg RUN wget \ https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh \