From e28a0eebb23c89205f130d4727e0d3afa5a7141b Mon Sep 17 00:00:00 2001 From: Alex Murkoff <79400603+alexlnkp@users.noreply.github.com> Date: Tue, 11 Jun 2024 18:27:56 +0700 Subject: [PATCH] fix(requirements): revert removal of ffmpeg in unitest.yml and Dockerfile --- .github/workflows/unitest.yml | 1 + Dockerfile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/unitest.yml b/.github/workflows/unitest.yml index 303ca71..aa56fbe 100644 --- a/.github/workflows/unitest.yml +++ b/.github/workflows/unitest.yml @@ -18,6 +18,7 @@ jobs: - name: Install dependencies run: | sudo apt update + sudo apt -y install ffmpeg wget https://github.com/fumiama/RVC-Models-Downloader/releases/download/v0.2.3/rvcmd_linux_amd64.deb sudo apt -y install ./rvcmd_linux_amd64.deb python -m pip install --upgrade pip diff --git a/Dockerfile b/Dockerfile index b37ecf2..1b30c7c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /app # Install dependenceis to add PPAs RUN apt-get update && \ - apt-get install -y -qq aria2 && apt clean && \ + apt-get install -y -qq ffmpeg aria2 && apt clean && \ apt-get install -y software-properties-common && \ apt-get clean && \ rm -rf /var/lib/apt/lists/*