From 008c2499a8b1ae10e97146979faecf754be62983 Mon Sep 17 00:00:00 2001 From: Pratik Somaiya Date: Tue, 21 Jan 2025 12:16:42 +0000 Subject: [PATCH] pytorch 2.5.1 docker image does not have ffmpeg installed in conda env so no need to remove --- backend.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend.Dockerfile b/backend.Dockerfile index 54a32967b..92b55958b 100644 --- a/backend.Dockerfile +++ b/backend.Dockerfile @@ -32,7 +32,7 @@ RUN pip install --upgrade pip setuptools RUN pip install -e ".[interactive-demo]" # https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite/issues/69#issuecomment-1826764707 -RUN rm /opt/conda/bin/ffmpeg && ln -s /bin/ffmpeg /opt/conda/bin/ffmpeg +RUN ln -s /bin/ffmpeg /opt/conda/bin/ffmpeg # Make app directory. This directory will host all files required for the # backend and SAM 2 inference files.