From 0c81db76257935d8d1232c0424da6e8d857d6706 Mon Sep 17 00:00:00 2001 From: Brian McGinn Date: Tue, 3 Dec 2024 09:03:32 -0700 Subject: [PATCH] fix: Update ffmpeg version --- geti-pipeline/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/geti-pipeline/Dockerfile b/geti-pipeline/Dockerfile index 17b0b78..80a0fd6 100644 --- a/geti-pipeline/Dockerfile +++ b/geti-pipeline/Dockerfile @@ -4,7 +4,7 @@ ######################################################################## FROM python:3.9-bullseye -RUN apt-get update && apt-get install --no-install-recommends ffmpeg=7:4.3.7-0+deb11u1 libsm6=2:1.2.3-1 libxext6=2:1.3.3-1.1 -y \ +RUN apt-get update && apt-get install --no-install-recommends ffmpeg=7:4.3.8-0+deb11u1 libsm6=2:1.2.3-1 libxext6=2:1.3.3-1.1 -y \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* COPY . . @@ -12,4 +12,4 @@ WORKDIR /example_code RUN python -m pip install --no-cache-dir -r requirements.txt ENV PYTHONUNBUFFERED=1 EXPOSE 8080 -CMD ["python", "demo.py"] \ No newline at end of file +CMD ["python", "demo.py"]