From b5b2184c0afa42613086fafb90d397d656580d9c Mon Sep 17 00:00:00 2001 From: drbh Date: Wed, 27 Nov 2024 20:50:42 -0500 Subject: [PATCH] fix: include usr lib in ld path --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index e553b9eb..e9e6aad9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -216,6 +216,9 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-ins libswscale-dev \ && rm -rf /var/lib/apt/lists/* +# Add ffmpeg libraries to the path +ENV LD_LIBRARY_PATH="/usr/lib/x86_64-linux-gnu:$LD_LIBRARY_PATH" + # Copy conda with PyTorch installed COPY --from=pytorch-install /opt/conda /opt/conda