From 75deef0b21eaa33311830e0b048871ba3749b9eb Mon Sep 17 00:00:00 2001 From: tornikeo Date: Sun, 22 Jun 2025 11:52:04 +0200 Subject: [PATCH] Fix rm ffmpeg not found in docker --- backend.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend.Dockerfile b/backend.Dockerfile index 54a32967b..7c681d455 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 rm -f /opt/conda/bin/ffmpeg && 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.