diff --git a/.devops/cpu.Dockerfile b/.devops/cpu.Dockerfile index c19b7038bb..a6dd6a516b 100644 --- a/.devops/cpu.Dockerfile +++ b/.devops/cpu.Dockerfile @@ -53,7 +53,7 @@ LABEL org.opencontainers.image.created=$BUILD_DATE \ org.opencontainers.image.source=$IMAGE_SOURCE RUN apt-get update \ - && apt-get install -y libgomp1 curl \ + && apt-get install -y libgomp1 curl ffmpeg \ && apt autoremove -y \ && apt clean -y \ && rm -rf /tmp/* /var/tmp/* \ diff --git a/.devops/cuda.Dockerfile b/.devops/cuda.Dockerfile index 621fe8b6a9..825df2a582 100644 --- a/.devops/cuda.Dockerfile +++ b/.devops/cuda.Dockerfile @@ -59,7 +59,7 @@ LABEL org.opencontainers.image.created=$BUILD_DATE \ org.opencontainers.image.source=$IMAGE_SOURCE RUN apt-get update \ - && apt-get install -y libgomp1 curl \ + && apt-get install -y libgomp1 curl ffmpeg \ && apt autoremove -y \ && apt clean -y \ && rm -rf /tmp/* /var/tmp/* \ diff --git a/.devops/intel.Dockerfile b/.devops/intel.Dockerfile index e5d0f02ebf..93fd4fa5a3 100644 --- a/.devops/intel.Dockerfile +++ b/.devops/intel.Dockerfile @@ -85,7 +85,7 @@ RUN mkdir /tmp/neo/ && cd /tmp/neo/ \ && dpkg --install *.deb RUN apt-get update \ - && apt-get install -y libgomp1 curl \ + && apt-get install -y libgomp1 curl ffmpeg \ && apt autoremove -y \ && apt clean -y \ && rm -rf /tmp/* /var/tmp/* \ diff --git a/.devops/musa.Dockerfile b/.devops/musa.Dockerfile index 3194294b36..ddc29b2786 100644 --- a/.devops/musa.Dockerfile +++ b/.devops/musa.Dockerfile @@ -64,7 +64,7 @@ LABEL org.opencontainers.image.created=$BUILD_DATE \ org.opencontainers.image.source=$IMAGE_SOURCE RUN apt-get update \ - && apt-get install -y libgomp1 curl \ + && apt-get install -y libgomp1 curl ffmpeg \ && apt autoremove -y \ && apt clean -y \ && rm -rf /tmp/* /var/tmp/* \ diff --git a/.devops/openvino.Dockerfile b/.devops/openvino.Dockerfile index 6dabdb323c..ab14288ce1 100644 --- a/.devops/openvino.Dockerfile +++ b/.devops/openvino.Dockerfile @@ -107,7 +107,7 @@ LABEL org.opencontainers.image.created=$BUILD_DATE \ org.opencontainers.image.source=$IMAGE_SOURCE RUN apt-get update \ - && apt-get install -y libgomp1 libtbb12 curl wget ocl-icd-libopencl1 \ + && apt-get install -y libgomp1 libtbb12 curl wget ffmpeg ocl-icd-libopencl1 \ && apt autoremove -y \ && apt clean -y \ && rm -rf /tmp/* /var/tmp/* \ diff --git a/.devops/rocm.Dockerfile b/.devops/rocm.Dockerfile index 3fdf7a8e48..2209ab661f 100644 --- a/.devops/rocm.Dockerfile +++ b/.devops/rocm.Dockerfile @@ -76,7 +76,7 @@ LABEL org.opencontainers.image.created=$BUILD_DATE \ org.opencontainers.image.source=$IMAGE_SOURCE RUN apt-get update \ - && apt-get install -y libgomp1 curl \ + && apt-get install -y libgomp1 curl ffmpeg \ && apt autoremove -y \ && apt clean -y \ && rm -rf /tmp/* /var/tmp/* \ diff --git a/.devops/vulkan.Dockerfile b/.devops/vulkan.Dockerfile index 138a50d7da..f26c7c45b8 100644 --- a/.devops/vulkan.Dockerfile +++ b/.devops/vulkan.Dockerfile @@ -49,7 +49,7 @@ LABEL org.opencontainers.image.created=$BUILD_DATE \ org.opencontainers.image.source=$IMAGE_SOURCE RUN apt-get update \ - && apt-get install -y libgomp1 curl libvulkan1 mesa-vulkan-drivers \ + && apt-get install -y libgomp1 curl ffmpeg libvulkan1 mesa-vulkan-drivers \ libglvnd0 libgl1 libglx0 libegl1 libgles2 \ && apt autoremove -y \ && apt clean -y \ diff --git a/.devops/zendnn.Dockerfile b/.devops/zendnn.Dockerfile index 76299b49e4..c25d7e4d3d 100644 --- a/.devops/zendnn.Dockerfile +++ b/.devops/zendnn.Dockerfile @@ -46,7 +46,7 @@ LABEL org.opencontainers.image.created=$BUILD_DATE \ org.opencontainers.image.source=$IMAGE_SOURCE RUN apt-get update \ - && apt-get install -y libgomp1 libnuma1 curl \ + && apt-get install -y libgomp1 libnuma1 curl ffmpeg \ && apt autoremove -y \ && apt clean -y \ && rm -rf /tmp/* /var/tmp/* \